Stackedplot -grahps spaced evenly
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commento
Adam Danz
il 29 Dic 2021
This is a screenshot of the attached figure.
Why are you using stackedplot? Are you sure this is the right figure?
Risposte (1)
Sai Sumanth Korthiwada
il 28 Feb 2022
Modificato: Sai Sumanth Korthiwada
il 28 Feb 2022
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 Commenti
Vedere anche
Categorie
Scopri di più su Line Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!