Look-up table with changing table
20 次查看(过去 30 天)
显示 更早的评论
Hello, I have a problem whe using look-up table, for now I solved by implementing a function myself in simulink (user-defined funcion), but I hope there is someway to do it with the provided blocks. I want to look in a vector, so I want to use soemthing like a 1D lookup table, but the vector into which I look comes from another block, so is changing. In the Lookup table block there is no means to put the table as an input... I know the Look-up table dynamic, but it has the restriction of : "strictly monotonically increasing in x". In my case is usually decreasing and eventually has some values that do not fit... Hope someone can help me . Thank you
0 个评论
采纳的回答
Jonathan LeSage
2013-11-7
From what you are describing as requirements, you are correct that you need to use the 'Lookup Table Dynamic' block. You are also correct that the requirements of this block specify that the xdat input vector must be strictly monotonically increasing. This constraint arises from the fact that the lookup table models a proper function. If you have a non-unique lookup for the same x-value, then a lookup table cannot uniquely determine the output value.
My recommendation is that you sort your x table data and then correspondingly use the sorted indices to sort your y table data. With your vectors monotonically sorted, you can directly use the 'Lookup Table Dynamic' block. The Sort and Permute Matrix Simulink blocks seem to be the most straightforward method of implementing my suggestion. Note: the Permute Matrix block is part of the DSP System Toolbox.
To help you get started, here is a simple Simulink model that would allow you to use the Dynamic Lookup block:
Hope this helps!
3 个评论
rasool alturfi
2018-4-6
Dear Jonathan LeSage, Could you please help with the same issue but for two inputs and one output! Thanks..
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Lookup Tables 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!