How to create the Lookup table in MATLAB Simulink?
5 views (last 30 days)
Show older comments

How to create the lookup table for the above data using MATLAB Simulink?
0 Comments
Answers (1)
Image Analyst
on 12 Feb 2022
lut = zeros(7, 4);
lut(:, 1) = (0:6);
lut(:, 2) = [158;124;157;16;13;14;17];
lut(:, 3) = [157;89;46;12;58;79;25];
lut(:, 4) = [-89;-58;-5;47;58;78;41]
See Also
Categories
Find more on Lookup Tables 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!