フィルターのクリア

How to plot specific graph

1 回表示 (過去 30 日間)
Matlabbey
Matlabbey 2012 年 9 月 8 日
hello all
im trying to graph in a certain way and was hoping to learn how to do this. attatched is what im trying to do but not sure how to do it in matlab. thank you!!

採用された回答

Image Analyst
Image Analyst 2012 年 9 月 8 日
x = 1:4;
y1 = [40 0 0 0];
y2 = [-28 0 0 0];
bar(x, y1, 'FaceColor', 'r');
hold on;
bar(x, y2, 'FaceColor', [.5 .5 .5]);
grid on;
  2 件のコメント
Matlabbey
Matlabbey 2012 年 9 月 8 日
hi! thanks for the response, but how do i make it so the bottom numbers are not negative? can i make that axis positive also? i'm not sure for the formatting. thank you!!
Image Analyst
Image Analyst 2012 年 9 月 8 日
You can reset the tick labels to be anything you want, for example you could take the absolute value and write them back out as positive. Look up tick labels in the help for examples.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by