Info
This question is closed. Reopen it to edit or answer.
how to create a matrix from another
1 view (last 30 days)
Show older comments
How would i create a matrix that is the last column and the 2nd and 4th row of matrix x?
0 Comments
Answers (2)
Ameer Hamza
on 20 Sep 2020
Edited: Ameer Hamza
on 20 Sep 2020
M = x(:, [end 2 4])
This is pretty basic stuff in MATLAB and you have other similar questions too. I ssuggest you to read about array indexing: https://www.mathworks.com/help/matlab/math/array-indexing.html.
0 Comments
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!