dynamically save a matrix to a structure

조회 수: 22 (최근 30일)
A
A 2021년 1월 23일
편집: Stephen23 2021년 1월 26일
I have a loop that evaluates a matrix X for each scenario. The size of this matrix X changes at each iteration, and the values too. I would like to make a structure X.1, X.2 etc to X.(n), and save the result X. When I do eval(['[Z.SET'num2str(J) ']= (Xtmp);']); X.1 gets overwritten by X.2, what I mean is that at first I have X.1 with the desired X matrix, but at the next loop, X.1 is no longer there and there is X.2 (with the corresponding X matrix). How can I “save” the X.1 so that it doesn’t get overwritten?

채택된 답변

Stephen23
Stephen23 2021년 1월 24일
편집: Stephen23 2021년 1월 26일
Do NOT use eval for trivial code like this.
That approach is slow, complex, inefficient, and not recommended. Rather than messing around with fieldnames like that, the simple and efficient MATLAB solution would be to just use indexing into a cell array or structure array, e.g.:
C = cell(1,N);
for k = 1:N
...
C{k} = Xtmp;
end
Or if you really want to use a structure:
C = struct('X',cell(1,N));
for k = 1:N
...
C(k).X = Xtmp;
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Whos에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by