필터 지우기
필터 지우기

Find minimum and maximum value from a matrix for a specific interval

조회 수: 2 (최근 30일)
I have a 30X100 size matrix, for which i want to find minimum and maximum value for row 2,5,8,11,14,17,20,23,27.
How can i find the minimum and maximu values from these rows.

채택된 답변

Walter Roberson
Walter Roberson 2022년 9월 20일
rows = [2,5,8,11,14,17,20,23,27];
[minima, maxima] = bounds(YourMatrix(rows,:), 2);
  댓글 수: 1
Chaudhary P Patel
Chaudhary P Patel 2022년 9월 20일
I want to find the maximum minimum from the comparision of all the specified row with all column at a time.
can you please explain is command with a example.

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by