Could not determine the size of this expression.

20 Ansichten (letzte 30 Tage)
mohamed mb
mohamed mb am 11 Okt. 2017
Beantwortet: Fred Smith am 12 Okt. 2017
the Embedded MATLAB fail to detemrine the size of my expression(R2017a), i get this problem.
'Could not determine the size of this expression'.
nbclass=max(LS);
for i=0:nbclass-1
h=plot(Pt(i*nt+1:(i+1)*nt,1),Pt(i*nt+1:(i+1)*nt,2),[style(i+1) color(i+1)]);hold on;
end;

Akzeptierte Antwort

Fred Smith
Fred Smith am 12 Okt. 2017
Mohamed,
What specific expression is MATLAB Coder highlighting? What types do the variables in your code snippet have? What ranges are known? Did you turn dynamic memory allocation off?
At a guess, you have turned dynamic memory allocation off and the problem is this expression:
(i*nt+1 :(i+1)*nt)
Proving that this has a bounded size requires symbolic reasoning beyond MATLAB Coder's abilities. If you rewrite it as follow it should work provided nt is bounded
(i*nt + (1:nt))
However, without reproduction steps this is just a guess.
Note, code generation does not generate code for these plotting routines. They will be evaluated using the MATLAB execution engine when run in MATLAB and not show in standalone code at all.
Thanks,
Fred

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB Coder 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!

Translated by