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

Azzi Abdelmalek
Azzi Abdelmalek 2014년 7월 18일
What is your problem?
Andrew Reibold
Andrew Reibold 2014년 7월 18일
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?" !

댓글을 달려면 로그인하십시오.

 채택된 답변

Matt J
Matt J 2014년 7월 19일
편집: Matt J 2014년 7월 19일

0 개 추천

Yes, it is legal. From the documentation on SUBSASGN:
" For multidimensional arrays, a(I,J,K,...) = b assigns b to the specified elements of a. b must be length(I)-by-length(J)-by-length(K)-... or be shiftable to that size by adding or removing singleton dimensions. "
Here's another example where the mis-shaped right hand side of the assignment isn't even a vector,
>> mat=zeros(4); a=rand(1,1,2,3);
>> mat(1:2,1:3)=a
mat =
0.1779 0.8754 0.5206 0
0.5702 0.1890 0.4129 0
0 0 0 0
0 0 0 0

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품

질문:

2014년 7월 18일

댓글:

2014년 7월 19일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by