Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
how do you change the colour of the error bars using the dock figure tool?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
how do you change the colour of the error bars after finishing plotting (using the plot tool/dock figure tool)?
0 Commenti
Risposte (1)
KSSV
il 11 Mar 2019
x = 1:10:100;
y = [20 30 45 40 60 65 80 75 95 90];
err = 8*ones(size(y));
errorbar(x,y,err,'r')
YOu can specify color in the errobar..read about it.
2 Commenti
KSSV
il 11 Mar 2019
Click on the edit (arrow) ..right clock on the curve you want to change color...select the color you want.
Questa domanda è chiusa.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!