How to flip in specific rows in an array with a for loop

I'm trying to flip a row based on its left and right maximum values and obtain an array with all these changes.
[leftMAX,left_idx]=max(leftA,[],2);
[rightMAX, right_idx]=max(rightA,[],2);
[middleMAX, middle_idx]=max(middleA,[],2);
n= size(A,1);
for ii = 1:n-1
if leftMAX> rightMAX
continue
elseif rightMAX>leftMAX
fliplr(A(n,:))
end
end
However nothing changes in the array A

답변 (1개)

Walter Roberson
Walter Roberson 2017년 10월 8일
fliplr(A(n,:))
executes the fliplr. Then, there is no assignment statement, so it assigns the value to the variable "ans". It then looks and sees that there is no semi-colon after the expression, so it displays the value of the variable ans.
You did not make any change to the variable A.

댓글 수: 1

So then how can I display the all the changes within another array without losing other data?

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

카테고리

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

질문:

2017년 10월 8일

댓글:

2017년 10월 8일

Community Treasure Hunt

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

Start Hunting!

Translated by