how to create matrix c, where first column is vector a, and the last column is vector b without a loop
2 次查看(过去 30 天)
显示 更早的评论
采纳的回答
Voss
2023-2-3
a = [1;2;3;4;5];
N = 3;
c = a+(0:N)
2 个评论
Les Beckham
2023-2-3
Nice!
Expanding on this idea for an arbitrary dimension square result:
N = 10; % desired dimension
a = 1:N;
c = a' + (0:(N-1))
更多回答(1 个)
Les Beckham
2023-2-3
编辑:Les Beckham
2023-2-3
a = [1;2;3;4;5];
c = [a a+1 a+2 a+3]
If you are a beginner in using Matlab, I would suggest taking a couple of hours to go through the free tutorial that can be found here: Matlab Onramp
2 个评论
Les Beckham
2023-2-3
编辑:Les Beckham
2023-2-3
I can't seem to come up with a way to do that without a loop. Assuming the result is supposed to be square, this should work and seems a bit more clear to me than your loop solution.
N = 10; % desired dimension
a = 1:N;
for i = 1:N
c(i,:) = a + i - 1;
end
disp(c)
Note that this will create the upper triangular part of the matrix, but I couldn't figure out how to generate the lower half.
c = hankel(1:N)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!