how to find maximum values of two numbers present in a structure
27 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Sivakumaran Chandrasekaran
am 21 Dez. 2013
Kommentiert: Walter Roberson
am 21 Dez. 2013
My code creates a structure with values {15 8}... i need to find the maximum of those two numbers.. how to do it
0 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 21 Dez. 2013
Bearbeitet: Azzi Abdelmalek
am 21 Dez. 2013
data=struct('a',{8 5}) % Example
out=max([data.a])
1 Kommentar
Walter Roberson
am 21 Dez. 2013
The above is correct and is for a structure array in which the field "a" of each element has one or more values; the number of values along the rows can vary with the above code, but the number of rows must be consistent with that code.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Structures finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!