Subscripted assignment dimension mismatch.
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
tahseen alshmary
il 16 Nov 2018
Commentato: tahseen alshmary
il 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 Commenti
Risposta accettata
madhan ravi
il 16 Nov 2018
Modificato: madhan ravi
il 16 Nov 2018
f0=cell(1,50); %preallocation
for i=1:50
f0{i}=ofun(x0(i,:));
end
celldisp(f0)
3 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Linear Least Squares 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!