How to save into a particular variable space in .mat file?

1 次查看(过去 30 天)
Say A = cell(100,1) existing as a variable in the .mat file. I want to add 100 more elements to A from my main program i.e. the variable space A(101:200) in the .mat file. How do I accomplish this?

采纳的回答

KL
KL 2017-11-27
The same command which I just gave you for your other question. That's why you should read the link!
A = rand(100,1);
save('dummy.mat','A')
mobj = matfile('dummy.mat','Writable', true);
mobj.A = [mobj.A; rand(100,1)];
  2 个评论
Viswanath Hariharan
Viswanath Hariharan 2017-11-27
I'm so sorry. I figured it out after submitting the question and then forgot to delete the question. Thank you for your help.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by