How to create the Lookup table in MATLAB Simulink?
Ältere Kommentare anzeigen

How to create the lookup table for the above data using MATLAB Simulink?
Antworten (1)
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]
1 Kommentar
MANIKANDAN S
am 13 Feb. 2022
Kategorien
Mehr zu Nonlinearity finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!