Plot a bar chart while sorting its variables and presenting the cosponsoring new sorted variables in the x-axis.

7 ビュー (過去 30 日間)
I have two vectors as below where i would like to plot them in a bar chart in a descending order while showing the corropsoing values in the x-axix. However, my plot does not look nice as attached. Is there any way to fix it please.
fields_name = 1:19;
CV = [8 68 30 14 9 13 28 17 13 29 23 17 41 27 25 51 0 20 28];
[CV_Sorted,index] = sort(CV,'descend');
bar(CV_Sorted)
yt = get(gca, 'xTick');
set(gca, 'xTick',yt, 'xTickLabel',Fields_Sorte)

採用された回答

Yaser Khojah
Yaser Khojah 2019 年 2 月 25 日
Cases = 1:19;
[CV_Sorted,index] = sort(CV,'descend');
bar(CV(index))
xTick = Fields_Sorte;
set(gca, 'xTick',Cases, 'xTickLabel',Fields_Sorte)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeBar Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by