Find max value position

4 Ansichten (letzte 30 Tage)
Gonzalo Guerrero
Gonzalo Guerrero am 1 Jun. 2020
Hi,
I am trying to sort out a problem where I got 210 rows in 1 column, which variable is called 'Force1' and I need to find the position of the max value. I tried the next code:
x=find(max(Force1))
The actual value is in row 170, however, matlab gives me x=1.
Then I tried to apply this one:
x=find(max(Force1))
and result is x= to 210 rows where first one is the max value and then 0
Thank you
Gonzalo Gomez Guerrero

Akzeptierte Antwort

KALYAN ACHARJYA
KALYAN ACHARJYA am 1 Jun. 2020
Bearbeitet: KALYAN ACHARJYA am 1 Jun. 2020
x=find(Force1==max(Force1))
  3 Kommentare
KALYAN ACHARJYA
KALYAN ACHARJYA am 1 Jun. 2020
Sorry, my bad
Gonzalo Guerrero
Gonzalo Guerrero am 1 Jun. 2020
Thank you, it worked! :D

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by