Why cant't I save an array?
9 ビュー (過去 30 日間)
古いコメントを表示
I'm trying to save a 1063x1 double called ewa to a file with this line of code:
save(ewa.mat, ewa);
I get this error: Attempt to reference field of non-structure array.
0 件のコメント
採用された回答
José-Luis
2014 年 6 月 23 日
save('ewa.mat', ewa);
4 件のコメント
Joseph Cheng
2014 年 6 月 23 日
have you looked at the documentation for save? they have examples on its use.
The documentation shows that both inputs should be a string.
save('ewa.mat', 'ewa');
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Structures についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!