Finding the maximum in a structure array
2 ビュー (過去 30 日間)
古いコメントを表示
How would I go about finding the maximum in a structure array as well as the corresponding data with that maximum value. For example, if the structure array provided data about the name, gender, and quiz grade, how would I found the maximum (highest) quiz grade and display the name and gender corresponding to that quiz grade?
0 件のコメント
採用された回答
Image Analyst
2022 年 2 月 24 日
If strArray is your structure array (one structure per student), and quizGrade is the value for each structure, then to get all the grades for all the students into one vector you can do
allGrades = [strArray.quizGrade];
[maxGrade, indexOfMax] = max(allGrades);
studentWithHighestGrade = strArray(indexOfMax).studentName
2 件のコメント
Image Analyst
2022 年 2 月 25 日
Yes
structsToExtract = allGrades <= someValue; % someValue is less than maxGrade of course, otherwise you'd select everything.
newStruct = strArray(structsToExtract);
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Spreadsheets についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!