Filter löschen
Filter löschen

how to make cell2mat for many column to one vector ?

1 Ansicht (letzte 30 Tage)
ElizabethR
ElizabethR am 24 Apr. 2016
Kommentiert: ElizabethR am 26 Apr. 2016
i have a cell like this image
i want to get the maximum value from valeu of column 2 to 5. when i using cell2mat function, i get the error. so, how to convert the value of column 2 to 5 to be vector so i can get the maximum value ? thanks
  3 Kommentare
ElizabethR
ElizabethR am 24 Apr. 2016
Thanks for answare,
ooh i am sorry, this is the right image:
the variable i want process is "nilai" .. yes, i want to get the maximum value from value in column to 5 is it possible that i get the maximum from complex values ?
Stephen23
Stephen23 am 25 Apr. 2016
Bearbeitet: Stephen23 am 25 Apr. 2016
@eliz: instead of asking random strangers why not just simply read the MATLAB documentation max, and see what it says about complex numbers. The documentation is great: it tells us how MATLAB works.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Jan
Jan am 24 Apr. 2016
Perhaps something like:
V = [b{:, 2:5}]
  4 Kommentare
ElizabethR
ElizabethR am 24 Apr. 2016
yes i see, but i mean, is possible that i get the maximum value from complex number ?
ElizabethR
ElizabethR am 26 Apr. 2016
@Jan Simon how to get all value only from column 2 ?? thanks

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Image Analyst
Image Analyst am 24 Apr. 2016
Did you try something like this
col5 = nilai{:, 5};
magCol5 = abs(col5);
[maxValue, indexOfMax] = max(magCol5)
  5 Kommentare
Image Analyst
Image Analyst am 25 Apr. 2016
Just put it as a line in your program, or type it at the prompt in the command window.
ElizabethR
ElizabethR am 26 Apr. 2016
Bearbeitet: ElizabethR am 26 Apr. 2016
i have been tried it. thanks yo so much image analyst ^^ whether the format long g convert a decimal number with lots value after the comma to only 14 number after the comma?? i try to using format long g in my function, but this output is same like i don't use format long g thanks

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Data Type Conversion 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