Subscripted assignment dimension mismatch.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
tahseen alshmary
am 16 Nov. 2018
Kommentiert: tahseen alshmary
am 25 Nov. 2018
I have this error
((Subscripted assignment dimension mismatch))
appear with this function
for i=1:50
f0(i,1)=ofun(x0(i,:));
end
how can i solve this problem?
0 Kommentare
Akzeptierte Antwort
madhan ravi
am 16 Nov. 2018
Bearbeitet: madhan ravi
am 16 Nov. 2018
f0=cell(1,50); %preallocation
for i=1:50
f0{i}=ofun(x0(i,:));
end
celldisp(f0)
3 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Linear Least Squares 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!