How to change the color of plotting lines
858 ビュー (過去 30 日間)
古いコメントを表示
採用された回答
Adam Danz
2019 年 6 月 18 日
The line of code that apparently does the plotting is cut off in your image.
Either specify the color during plotting
plot(x,y,'color', 'b');
or set the color later using the output handles
h = plot(x,y);
set(h, 'Color', 'b')
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!