Finding the elements within a certain range [XMin, XMax] in every column of an array, then converting all the elements of each column within that range to the minimum of that range

조회 수: 2 (최근 30일)
I want to find all the elements within a certain range in every column of an array. For example, I want to find all the elements, x, of column 1 of the array below that satisfy: 1>x>=0,01 (minimum of column). Then find the elements x of column 2 that satisfy 5>x>=0,05, and in column 3, all the elements for which 2>x>=0,07. Then I want to convert all those elements to the minimum values of that range for each columns, which are: 0,01, 0,05 and 0,007.
It must look like this:

답변 (1개)

Cris LaPierre
Cris LaPierre 2021년 3월 13일
편집: Cris LaPierre 2021년 3월 13일
Look into indexing into and modifying arrays, logical indexing, and for loops.
You can learn about all these topics in MATLAB Onramp (Chs 5, 12, and 13)

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by