append array of 1xn in mat file and as a result it should be look like kxn. k=3

2 ビュー (過去 30 日間)
N/A
N/A 2018 年 10 月 25 日
コメント済み: N/A 2018 年 10 月 25 日
I want to append array of 1xn which is having values of each iteration into mat file. eg if iteration=3 and data=1xn then i want that after iterations i will get mat file containing values like 3 rows and n columns. this mat file is inside a loop. I dont want to overwrite the values. in present code it is overwriting it.
thank you.
  2 件のコメント
Stephen23
Stephen23 2018 年 10 月 25 日
編集済み: Stephen23 2018 年 10 月 25 日
Note that save's -append option is very badly named: it should really be named -overwrite or something similar, because it does not "append" data to an existing variable in the .mat file, it actually completely overwrites any existing variable of the same name.
N/A
N/A 2018 年 10 月 25 日
yes I know :)

サインインしてコメントする。

採用された回答

Stephen23
Stephen23 2018 年 10 月 25 日
編集済み: Stephen23 2018 年 10 月 25 日
You will have to do one of these:
  1. on each iteration load the data, concatenate, then save the data.
  2. use matfile.
  3. collect all of the data into one array, then save it all at once after the loop.
I recommend the third option (because it is the neatest and most efficient). Use matfile for very large data sets.
  7 件のコメント
N/A
N/A 2018 年 10 月 25 日
And there is also another problem. gprofits is coming from another .m file. And inside for loop gprofits appending values but if I change the size of gprofits to 1xn and if profits is of size 1xk where k<n then due to column numbers are not same it gives an error. Help me to resolve these problems. Thank you
N/A
N/A 2018 年 10 月 25 日
the problem has resolved. Thank you

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeEnvironment and Settings についてさらに検索

タグ

製品


リリース

R2014a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by