how to make the edge of the graph bold ?
77 ビュー (過去 30 日間)
古いコメントを表示
how to make the edge of the graph bold as shown below:
採用された回答
Star Strider
2020 年 6 月 21 日
Unfortunately, nothing is shown.
Guessing what you may want, try this:
x = 1:10;
y = rand(size(x));
figure
plot(x, y)
grid
title('Default Box Linewidth (0.5)')
figure
plot(x, y)
grid
set(gca, 'LineWidth', 1.5)
title('Redefined Box Linewidth (1.5)')
producing (only showing the second plot here):
14 件のコメント
Star Strider
2020 年 6 月 21 日
The person whose Answer you Accepted copied my Answer. Ther is no need for me to re-post it.
ibrahim alzoubi
2020 年 6 月 22 日
chill! I didn't see your comment I said. trust me I'll accept it if I saw it.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!