Subscripted assignment dimension mismatch.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
tahseen alshmary
el 16 de Nov. de 2018
Comentada: tahseen alshmary
el 25 de Nov. de 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 comentarios
Respuesta aceptada
madhan ravi
el 16 de Nov. de 2018
Editada: madhan ravi
el 16 de Nov. de 2018
f0=cell(1,50); %preallocation
for i=1:50
f0{i}=ofun(x0(i,:));
end
celldisp(f0)
3 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Linear Least Squares en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!