Creating matrix outside for loop
2 次查看(过去 30 天)
显示 更早的评论
I need to create a matrix of variables and have the current code below. Is there anyway to do this without a for loop?
x = 0:.1:1;
y = 0:.1:1;
for i = 1:length(x)
for j = 1:length(y)
x2(i,j) = x(i);
y2(i,j) = y(j);
end
end
0 个评论
采纳的回答
Star Strider
2017-2-19
编辑:Star Strider
2017-2-19
Try this:
x2 = y'*ones(size(x));
y2 = ones(size(y'))*x;
EDIT —
The R2016b multiplication automatically does the expansion. Previous versions would require bsxfun calls:
x2 = bsxfun(@times, y', ones(size(x)));
y2 = bsxfun(@times, ones(size(y')), x);
5 个评论
Star Strider
2017-2-20
You do not need the loop.
This works:
U = sin(y1);
(I apologise for the delay.)
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!