Stackedplot -grahps spaced evenly
조회 수: 1 (최근 30일)
이전 댓글 표시
I have created a plot of a vs t using stacked plot function but my plot is looking very closely spaced yo each other.How I can get a plot more clear and evenly spaced for better understanding .
댓글 수: 1
Adam Danz
2021년 12월 29일
This is a screenshot of the attached figure.
Why are you using stackedplot? Are you sure this is the right figure?
답변 (1개)
Sai Sumanth Korthiwada
2022년 2월 28일
편집: Sai Sumanth Korthiwada
2022년 2월 28일
As per my understanding, a plot is created using "stackedplot" function, and the plot looked very closely spaced to each other.
To make a "stackedplot" more clear, "YLimits" property from "AxesProperties" of an object of "stackedplot" can be used to view the curve zoomed in horizontal direction, so that the fluctuations or observations are more clearly visible.
So, Increase the range of Y-axis to get a clearer figure.
For instance, observe the following code:
load outdoors
s = stackedplot(outdoors)
s.AxesProperties %displays the properties available
s.AxesProperties(1).YLimits = [0 100];
%if the current Ylimit is [0 100] try increasing the Y-axis range to [0 200] or
% more to get a clear and more evenly spaced figure
s.AxesProperties(1).YLimits = [0 200];
where s is an object of "stackedplot". As the "YLimits" range is increased, the figure appears more evenly spaced.
You can refer to stackedplot MathWorks documentation page for more info on "Stacked plot of several variables with common x-axis".
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Line Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!