필터 지우기
필터 지우기

I wanna replacing 2nd and 3rd column to each other. How can I write a command?

조회 수: 8 (최근 30일)
example; 1 2 3 2 4 6 3 6 9 2nd 3rd
  댓글 수: 1
Jan
Jan 2013년 1월 9일
Please, sermet, format your messages properly. Do you see that it is confusing? There is a "? Help" button on top of the mask to input message. Please read the instructions presented there.
Posting two questions about the same problem is called "double posting" and not liked in forums. Therefore this forum offers the possibility to edit a question in case of unclear formulations.

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

채택된 답변

Jan
Jan 2013년 1월 9일
And:
m(:, [2,3]) = m(:, [3,2])

추가 답변 (2개)

Image Analyst
Image Analyst 2013년 1월 9일
Another way:
column2 = m(:,2); % Save old column2.
m(:,2) = m(:,3); % Move col3 to col2.
m(:,3) = column2; % Make col3 the old col2
  댓글 수: 4
Image Analyst
Image Analyst 2013년 1월 9일
I have no idea. For things this tiny I usually don't worry about it. I went with a typical "swap" method. Jan, yours is more MATLAB-ish. For larger arrays, I might time them to compare speeds.
Jan
Jan 2013년 1월 10일
@Image Analyst and Daniel: I believe that Matlab does not allocate an [n x 2] array for the right hand side m(:, [3,2]), but does something like Bruno did in his FEX: MinMaxSelection with the inplace shared subarray tricks. I will perform some tests with large arrays.

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


Amith Kamath
Amith Kamath 2013년 1월 9일
Assuming I understand the question right, here is an example of how it could be done:
x = magic(5); % a random matrix for illustration.
l = 1:size(x,2); % get the number of columns of x.
l(2:3) = [3 2]; % setup index replacement.
y = x(:,l); % y will have the same elements as x, with rows 2 and 3 exchanged.
helps?

카테고리

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