Assign specific index to a matrix
Show older comments
I have a matrix 4x5 like this:
x=[1 3 5 7; 4 2 1 2; -1 3 5 4; 3 -2 6 7; 2 3 1 1];
how to add A as an index to the above matrix A=[0; 2; 5; 6; 9] so I get the following result:
0 1 3 5 7
2 4 2 1 2
5 -1 3 5 4
6 3 -2 6 7
9 2 3 1 1;;
how to subtract one row element with other rows elements?
Answers (1)
David Hill
on 26 Jan 2021
Edited: David Hill
on 26 Jan 2021
x=[A,x];
Categories
Find more on Matrices and Arrays 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!