How to plot solid and dashed lines?
Mostra commenti meno recenti
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 Commenti
darova
il 24 Dic 2019
try
plot(x,y,'--k')
J. Alex Lee
il 24 Dic 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
il 24 Dic 2019
Modificato: Image Analyst
il 24 Dic 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).
Risposta accettata
Più risposte (1)
Nikita
il 24 Dic 2024
0 voti
plot(x,y,"--")
Categorie
Scopri di più su 2-D and 3-D Plots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!