How to plot specific graph
조회 수: 2 (최근 30일)
이전 댓글 표시
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!!
댓글 수: 0
채택된 답변
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
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개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!