Info
此问题已关闭。 请重新打开它进行编辑或回答。
Save FOR loop values in a matrix or a vector
2 次查看(过去 30 天)
显示 更早的评论
I have the following function with two FOR loops:
function Y = rot_mat(X)
n = sqrt(numel(X))
for x = 1:n
for y = 1:n
x_rot = x+y-1
y_rot = n-x+y
end
end
I am trying to save all the n x n values [x_rot, y_rot] in a vector or a n x n matrix. Could anyone, please, give me a hint on how to do that?
0 个评论
回答(1 个)
Image Analyst
2014-7-3
编辑:Image Analyst
2014-7-3
Use x_rot(x,y) and y(rot(x,y).
By the way, you need to assign Y or else your function cannot be called.
3 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!