필터 지우기
필터 지우기

Save New Variable to the Workspace for every iteration with a 'for' cycle

조회 수: 1 (최근 30일)
kerozi
kerozi 2016년 5월 23일
댓글: kerozi 2016년 5월 24일
Hello all,
I've been trying to save the Q_bar(3x3 matrix) answer seperately for every theta input but I am failing to save the Q_bar answer for each iteration. Because the only output is the final Q_bar matrix.
for theta = [0,45,60,45,45,60,45,0];
m = cos(theta*pi/180);
n = sin(theta*pi/180);
T = [m.^2 n.^2 2*m*n ; n.^2 m.^2 -2*m*n ; -m*n m*n m.^2-n.^2];
Tinv = inv(T);
Q_bar = Tinv*Q*T;
Q_bar = Q_bar(theta);
end
The final output should be Q_bar(0) = [3x3 matrix] , Q_bar(45) = [3x3 matrix], Q_bar(60) = [3x3 matrix] etc.
What can I do?
Thank You already
  댓글 수: 3
kerozi
kerozi 2016년 5월 23일
I have thought with another for loop inside should give an answer but it does not.
theta = [0,45,60,45,45,60,45,0];
for i=1:8;
m = cos(theta(i)*pi/180);
n = sin(theta(i)*pi/180);
T = [m.^2 n.^2 2*m*n ; n.^2 m.^2 -2*m*n ; -m*n m*n m.^2-n.^2];
Tinv = inv(T);
Q_bar = Tinv*Q*T;
Q_bar = Q_bar(theta(i));
end
AND I FORGOT TO TELL THAT Q MATRIX IS ALSO 3x3 MATRIX.
Stephen23
Stephen23 2016년 5월 23일
Don't try to create variables in a loop. This is slow, buggy, and not robust. Read this to know why:

댓글을 달려면 로그인하십시오.

채택된 답변

Stephen23
Stephen23 2016년 5월 23일
편집: Stephen23 2016년 5월 23일
Exactly as Adam said in their comment, just use a 3D array like this:
Q = randi(9,3,3);
vec = [0,45,60,45,45,60,45,0];
out = NaN([size(Q),numel(vec)]);
for k = 1:numel(vec)
theta = vec(k);
m = cos(theta*pi/180);
n = sin(theta*pi/180);
T = [m.^2 n.^2 2*m*n ; n.^2 m.^2 -2*m*n ; -m*n m*n m.^2-n.^2];
Tinv = inv(T);
Q_bar = Tinv*Q*T;
out(:,:,k) = Q_bar;
%Q_bar = Q_bar(theta);
end
But note that you should use \ instead of inv.
  댓글 수: 1
kerozi
kerozi 2016년 5월 24일
Thank You, as much as it seems an easy task, it was hard for me to comprehend the overall. But you made it happen. Thank You so much.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Steven Lord
Steven Lord 2016년 5월 23일
You're trying to create variables like Q_bar0, Q_bar45. etc.? DON'T DO THAT. That would make your code more difficult to read and probably slower. Read this Answer for an explanation.
Adam's suggestion is the recommended approach.
theta = 0:45:360;
M = zeros(3, 3, length(theta));
for k = 1:length(theta)
T = theta(k);
M(:, :, k) = [1 0 0; 0 cosd(T) -sind(T); 0 sind(T) cosd(T)];
end
The rotation matrix for the angle theta(N) [for N between 1 and length(theta)] is M(:, :, N).
And don't use inv, use the backslash operator \ instead.

카테고리

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