matrix vector substraction
Show older comments
z=[1,2,3,4,5,6,7,8;4,5,6,7,8,9,0,1;1,2,3,4,5,6,7,8;10,11,12,13,0,0,0,0];
y=[1,2,3,4];
how can i find z-y without loops thanks.
Accepted Answer
More Answers (2)
Amey
on 11 Oct 2011
0 votes
To do matrix subtraction, dimensions of both the matrices should be same. Here its not the case. Matrix z is 4*8 while matrix y is 1*4
osman
on 11 Oct 2011
0 votes
1 Comment
Sean de Wolski
on 11 Oct 2011
each column of y as it is, i.e. each row of y-transpose? See my answer.
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!