how to put long dash as line style in a plot
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
how to put long dash as line style in a plot
0 Commenti
Risposte (1)
Star Strider
il 29 Gen 2016
Different plots sometimes require different specifications for 'LineStyle' and 'Marker'.
The long dash is the '--' 'LineStyle'.
For example:
x = linspace(0, 2*pi, 250);
y = sin(x);
figure(1)
plot(x, y, '--')
grid
0 Commenti
Vedere anche
Categorie
Scopri di più su 2-D and 3-D 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!