How can i set the Simulink lookup table output limit
조회 수: 6 (최근 30일)
이전 댓글 표시
i want to get data from 1-D Lookup table in simulink with includeing extrapolation method and only plus side.
but i don't know how can this.
Ex)
1) LUT Data
X : [0.7, 0.8, 0.9, 1, 1.1]
V : 1.5, 1.4, 1.3, 1.2, 1.1]
2) Data INPUT and result (Current)
2-1) INPUT : 1 --> OUTPUT : 1.3
2-2) INPUT : 16 --> OUTPUT : -~~~ (Extrapolation method)
if Extrapolation method result is lessthen zero, I want to get result 0.
2-3) INPUT : 0.2 --> OUTPUT ; +~~~(Extrapolation method)
i was tryied Data Types - Output Minimum and Maximum Seting but that is not working. (Using verstion is 2015b)
Please letme know this solution.
댓글 수: 4
Nithin
2023년 1월 13일
What problem are you exactly facing with the parameters? Are you receiving any error messages?
답변 (1개)
Nehemiae
2023년 3월 8일
Hello,
The Output Minimum and Maximum properties in the 1-D lookup table, are the information stored for further optimizations done, such as:
- Parameter range checking.
- Simulation range checking.
- Automatic scaling of fixed-point data types.
- Optimization of the code generated from the model.
It does not limit the output of the lookup table as such, and hence a saturation block with upper limit being inf and the lower limit being 0, can be used.
The documentation on 1-D lookup tables (https://www.mathworks.com/help//releases/R2021a/simulink/slref/1dlookuptable.html), specifically the section under “Output Minimum – Minimum value the block can output”, can be explored to understand the underlying optimisations where this property is used.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Approximate Functions with Lookup Tables에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!