Assign column vector to a matrix row
Show older comments
This always works, but why? Is it legal?
vert = [1:4]',
horiz = [11:14],
mat = zeros(4,4)
mat(2,:)=vert,
mat(3,:)=horiz
My vector is a column vector return by a function. I'm hoping to avoid an extra step just to transpose it.
2 Comments
Azzi Abdelmalek
on 18 Jul 2014
What is your problem?
Andrew Reibold
on 18 Jul 2014
This question made me laugh really hard, but I'm going to try to maintain professionality.
What are you trying to ask when you say "Is it legal?" I'm assuming you don't mean "Is it against the law?" !
Accepted Answer
More Answers (0)
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!