Info
この質問は閉じられています。 編集または回答するには再度開いてください。
vectors that arent scalar
1 回表示 (過去 30 日間)
古いコメントを表示
IM = [expt.IM];
memorability = [expt.memorability];
[~, idx] = sort(IM);
IM = IM(idx);
memorability = memorability(idx);
plot(IM, memorability)
this is my code, but IM is not scalar so my graph looks wonky, its putting
in my 1x960 array IM means Image
each IM 1-960 has a random number as the jpeg name. So the first IM is 588 (but this number means nothing!!!) how I can just either rename them to 1-960 or just keep the order what it is not by these names
1 件のコメント
Walter Roberson
2019 年 11 月 15 日
I answered this at https://www.mathworks.com/matlabcentral/answers/491202-how-to-get-struct-array-field-as-a-vector-and-compare-the-two-fields#comment_767505 before you posted this question.
回答 (0 件)
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!