How to make part of my solid line dashed?
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I am plotting a series of data points and where the Mc>Mo I want to be dashed. This image is how I want my graph to look 

This is how it currently looks

This is the code I currently have for my plot if someone could tell me what to add to create that dashed line that would be helpful.
Mc = [0, 1, 2, 2.93, 4];
Mo=linspace(0,14,10000);
figure(1)
plot(Mo,SThrust,'Linewidth',2);
title('Ideal Scramjet Specific Thrust vs Freestream Mach Number');
xlabel('Mo');
ylabel('Specific Thrust (N/(kg/s)');
lgd=legend('Mc=0','Mc=1','Mc=2.0','Mc=2.93','Mc=4','Location','northeast');
lgd.FontSize=12;
0 commentaires
Réponses (1)
Cris LaPierre
le 10 Avr 2023
A data series (one line) can only have one line style. If you want 2 different line styles, you will need to split your series into two and plot each one with the desired line style.
0 commentaires
Voir également
Catégories
En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!