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 commentaires

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

Connectez-vous pour commenter.

 Réponse acceptée

Matt J
Matt J le 19 Juil 2014
Modifié(e) : Matt J le 19 Juil 2014
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

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Centre d'aide et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by