How to create a smaller matrix from a larger one?

조회 수: 2 (최근 30일)
Rand Renwar
Rand Renwar 2016년 9월 30일
편집: KSSV 2016년 9월 30일
So if I were to have a matrix M
M = [ 0 4 5 6
3 9 1 4];
And I wanted to create a smaller Matrix Z from M
Z = [ 5
1]
What would be the easiest/fastest way to do this?

채택된 답변

KSSV
KSSV 2016년 9월 30일
편집: KSSV 2016년 9월 30일
Z = M(:,3) ; % Z happens to be a third column in M
Read about matrix indexing.
https://in.mathworks.com/company/newsletters/articles/matrix-indexing-in-matlab.html

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Mathematics에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by