Simulink vector index assignment / re-ordering using Selector block
Show older comments
I'm trying to merge two vector signals into one vector according to two sets of indices.
For example:
u_pos = [2 3 4];
du_pos = [1 5 6 7];
These indicate the 'indices' of the combined signal where each element of each of the two input vectors is intended to go.
One way to do this might be to use a selector block like this:

This achieves the result, but to get the the correct assignment of the elements as above, I need to provide the following index vector to the selector block:
[4 1 2 3 5 6 7]
These are the indices of the input vector, not the output vector—which I have in my two index vectors above.
Obviously I could use two assignment blocks instead, but it's a more complicated solution than the selector block and also requires a zeros vector of the correct size:

Also, I like that the selector block shows the connections graphically. This is important to me.
Is there an easy way I can use a selector block? Maybe by converting my index vectors perhaps.
1 Comment
Bill Tubbs
on 4 Mar 2022
Accepted Answer
More Answers (0)
Categories
Find more on Event Functions in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!