How can I use variables defined MATLAB command window at MATLAB Function block at Simulink?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Example
MATLAB Command window >> aaa = 3;
MATLAB Function block at Simulink
function y = fcn(u)
%#codegen
c = aaa+u;
y = c
When I start simulation, Error message is announced at bellow.
関数または変数 'aaa' が未定義です。 (Function or Variable 'aaa' is not defined)
0 Kommentare
Antworten (1)
Karin Ebenbeck
am 13 Okt. 2016
My solution would be this:
create a script in MATLAB in which you define the variable aaa save this script - run it and then run SIMULINK
0 Kommentare
Siehe auch
Kategorien
Mehr zu Simulink Functions finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!