Look-up table with changing table

27 visualizaciones (últimos 30 días)
Virginia
Virginia el 7 de Nov. de 2013
Comentada: SIMONE PARENTELA el 6 de En. de 2021
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

Respuesta aceptada

Jonathan LeSage
Jonathan LeSage el 7 de Nov. de 2013
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 comentarios
rasool alturfi
rasool alturfi el 6 de Abr. de 2018
Dear Jonathan LeSage, Could you please help with the same issue but for two inputs and one output! Thanks..
SIMONE PARENTELA
SIMONE PARENTELA el 6 de En. de 2021
Can you share the code?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Simulink Functions en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by