How to exclude more than 1 columns from a matrix?

I have a matrix like this: Data = [2,1,4,6,2;9,4,6,1,2;5,3,2,8,3;7,2,1,9,3;7,1,8,2,4]
2 1 4 6 2
9 4 6 1 2
5 3 2 8 3
7 2 1 9 3
7 1 8 2 4
then i want to exclude the column 3 and 5 from my new matrix. So it will be like this:
2 1 6
9 4 1
5 3 8
7 2 9
7 1 2
what to do? thanks before :')

 채택된 답변

Richard
Richard 2012년 4월 27일

0 개 추천

simple way would be:
Data(:,3) = []; Data(:,5) = [];

댓글 수: 3

Jan
Jan 2012년 4월 27일
This will fail: If the 3rd column is removed, there is no 5th column anymore!
Better: Data(:, [3, 5]) = [];
Richard
Richard 2012년 4월 27일
then you would remove one column first and then change the value accordingly, only a simple solution. Although I agree that Data(:, [3, 5]) = []; is better.
Isti
Isti 2012년 4월 28일
thanks Jan. actuallu when I used the solution above, there's a time the error about exceeded matrix is out.
so, solution from andrei below is same with you. and it works :)

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Andrei Bobrov
Andrei Bobrov 2012년 4월 27일

3 개 추천

Data = [2,1,4,6,2;9,4,6,1,2;5,3,2,8,3;7,2,1,9,3;7,1,8,2,4]
out = Data(:,[1 2 5])

댓글 수: 4

Isti
Isti 2012년 4월 27일
i think we can't use it for the flexible size of Data. anyway thanks :)
out = Data(:,setdiff(1:size(Data,2),[3 5]))
Data(:,[3 5])=[]
Isti
Isti 2012년 4월 28일
thanks :)

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

질문:

2012년 4월 27일

Community Treasure Hunt

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

Start Hunting!

Translated by