Any good resources on how to use "Matrix Interpolation" block in simulink?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
So I want to use the "Matrix Interpolation" block in simulink, but I am confused as to how to actually use it and the only resource I could find on it was the help page:
I have some 5x2 matrices I want to select based on two integer indices with a "nearest" selection (so if I pass in the indices (0.6, 2.7) I want to select the matrix specified by the indices (1,3)). I was wondering, how can this be done? I mainly dont know how to pass in the matrices such that it aligns with the "Table data" input in the matrix interpolation block parameter menu.
0 commentaires
Réponse acceptée
Fangjun Jiang
le 9 Avr 2024
What you need is the "2-D Lookup Table" block. Drag that from the library and select "Nearest" at the "Algorithm" tab. The Help page gives you the general n-D Lookup Table block, which sometimes is hard to understand.
The "Matrix Interpolation" block can be regarded as the expansion of the Lookup Table block. It allows you to provide matrix input (as index input) to get multiple points at a time.
5 commentaires
Fangjun Jiang
le 9 Avr 2024
Okay, use a Selector block to select data from A_, which is a multi-dimension array. Round your indices to provide as the 3rd and 4th dimension input.
A_=rand(5,2,2,3);
A_(:,:,1,1)
A_(:,:,2,3)
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Sources dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!