Subscripted assignment dimension mismatch.
1 回表示 (過去 30 日間)
古いコメントを表示
tahseen alshmary
2018 年 11 月 16 日
コメント済み: tahseen alshmary
2018 年 11 月 25 日
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 件のコメント
採用された回答
madhan ravi
2018 年 11 月 16 日
編集済み: madhan ravi
2018 年 11 月 16 日
f0=cell(1,50); %preallocation
for i=1:50
f0{i}=ofun(x0(i,:));
end
celldisp(f0)
3 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Linear Least Squares についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!