.mat
Matlabのファイルに構造体の配列を保存するにはどうすればよいですか?出来ますか?
p(1).x=0;
p(1).y=0;
p(2).x=1;
p(2).y=1;
save('matfilename','-struct','p');
% ??? Error using ==> save
% The argument to -STRUCT must be the name of a scalar structure variable.
.mat
Matlabのファイルに構造体の配列を保存するにはどうすればよいですか?出来ますか?
p(1).x=0;
p(1).y=0;
p(2).x=1;
p(2).y=1;
save('matfilename','-struct','p');
% ??? Error using ==> save
% The argument to -STRUCT must be the name of a scalar structure variable.