How to change matrix?

조회 수: 2 (최근 30일)
Ayob
Ayob 2013년 6월 1일
I have a 6*3 matrix and I want to change to 6*2 matrix, how can I do it?
example:
N1=[1 2 3;4 5 6]
then
N1=[1 2;4 5]

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 6월 1일
편집: Azzi Abdelmalek 2013년 6월 1일
N1=[1 2 3;4 5 6]
N1=N1(:,1:2) % : means all lines, and 1:2 means column 1 to 2

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by