Mapping non-integer values of matrix to another matrix via mapping table
1 view (last 30 days)
Show older comments
Dear all,
I would like to do a mapping operation as in this thread, only with real numbers and not integers. To illustrate, suppose I have the vector
v=[0.5 1.3 0.7 3 0.7 1.3];
as well as a mapping table
m=[0.5 4; 0.7 5; 1.3 6; 3 7]
I would like to transform v via mapping m into
w=[4 6 5 7 5 6];
if possible without using a loop. Does anyone have an idea? Thanks a lot in advance for your time!
0 Comments
Accepted Answer
More Answers (0)
See Also
Categories
Find more on Logical 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!