How to make the errorbar and the data line have different line width
    20 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    Fan Yang
 am 28 Okt. 2021
  
    
    
    
    
    Beantwortet: Star Strider
      
      
 am 28 Okt. 2021
            I am trying to plot a like with errorbar using errorbar function.
dt = [sin((1:10));cos((1:10))]
errorbar(mean(dt),std(dt))
When you change the LineWidth in the errorbar function, both the errorbar and the data line were changed. For example
errorbar
(mean(dt),std(dt),'LineWidth',5)
I am wondering if there is a way to change the two line width seperately using the errorbar properties without plotting two plots
0 Kommentare
Akzeptierte Antwort
  Star Strider
      
      
 am 28 Okt. 2021
        Use a marker with errorbar and plot the errorbar separately from the original curve— 
dt = [sin((1:10));cos((1:10))];
figure
plot(mean(dt))
hold on
errorbar(mean(dt),std(dt), '.b', 'LineWidth',5, 'MarkerSize',0.1)
hold off
This defines the line style and then sets the marker size ot a very small value, so that the marker itself does not show.  
.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu Errorbars 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!




