Rotating coordinate system inside loop
显示 更早的评论
a=4;
b=4;
ab=a*b;
Input=zeros(ab,2);
for ii=1:a
Input((ii-1)*a+1:ii*a,1)=(a-b:-2:-(a+b)+2)'+2*(ii-1);
Input((ii-1)*a+1:ii*a,2)=(-(a+b)+2:2:a-b)'+2*(ii-1);
end
Question: Need to rotate at 45 degree.
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Environment and Clutter 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
