How can I find a number from a matrix, which is greater than and closest to 1.

4 Ansichten (letzte 30 Tage)
How can I find a number from a matrix, which is greater than and closest to 1. As I showed in attached table as an example. I know about indexing that just specifying the row and coloum I can find, however, if I have a huge matrix and I need to find this number and its row and coloumn than how can I find using find command etc. Thanks in advance.

Akzeptierte Antwort

KALYAN ACHARJYA
KALYAN ACHARJYA am 21 Nov. 2021
Bearbeitet: KALYAN ACHARJYA am 21 Nov. 2021
Hints: Use logical indexing
  1. Get the data those are greater than 1: mat>1
  2. Subtract 1 from all elements of the matrix - mat-1
  3. Get the min one - min(mat)

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by