simulink error:Class mismatch for variable 'exist'. Expected 'logical', Actual 'double'.
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I get a error in a MATLAB function block
coder.extrinsic('exist');
N=1296;
if exist('w_1','var')
W1=w_1;
else
W1=zeros(N,1);
end
0 Commenti
Risposte (1)
chengxuan yu
il 1 Apr 2018
Modificato: Walter Roberson
il 1 Apr 2018
Because 'exist' return a double value and 'if' need to follow a logical value.
you can modify the code like this:
if isequal(exist('w_1','var'),1)
W1=w_1;
else
W1=zeros(N,1);
end
0 Commenti
Vedere anche
Categorie
Scopri di più su Simulink Functions in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!