How to make part of my solid line dashed?
    11 ビュー (過去 30 日間)
  
       古いコメントを表示
    
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 件のコメント
回答 (1 件)
  Cris LaPierre
    
      
 2023 年 4 月 10 日
        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 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

