How to plot solid and dashed lines?
1.210 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Stefan Vermeulen
am 24 Dez. 2019
Beantwortet: J. Alex Lee
am 6 Jan. 2020
I want to plot a graph with a dashed and a solid line. Therefore, I use the script "subplot(221); spm1d.plot.plot_meanSD(Y0, 'color','k','--'); hold on ; spm1d.plot.plot_meanSD(Y1, 'color','r','-');"
However, I always get the following error: "Error using spm1d.plot.plot_meanSD (line 12) '--' is not a recognized parameter".
How can I plot it correctly?
3 Kommentare
J. Alex Lee
am 24 Dez. 2019
or to more closely align with original attempts
plot(x,y,'Color','k','LineStyle','--')
so "LineStyle" is the parameter you want to have the value "--"
Image Analyst
am 24 Dez. 2019
Bearbeitet: Image Analyst
am 24 Dez. 2019
Can you transfer your "Comments" to the official "Answers" section down below? You'll be able to earn reputation points down there, but not if they're just up here as a Comment (usually meant for asking for more clarification from the original poster).
Akzeptierte Antwort
J. Alex Lee
am 6 Jan. 2020
You need to precede the linestyle you want with the keyword 'LineStyle'
plot(x,y,'Color','k','LineStyle','--')
so "LineStyle" is the parameter you want to have the value "--"
Darova's answer is the typical shorthand for combining linestyle and color into a single key-less option, which has to be the 3rd argument (or 2nd, if there's not 1st argument, I think).
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Line Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!