how to make the edge of the graph bold ?
77 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ibrahim AlZoubi
am 21 Jun. 2020
Kommentiert: ibrahim alzoubi
am 22 Jun. 2020
how to make the edge of the graph bold as shown below:
Akzeptierte Antwort
Star Strider
am 21 Jun. 2020
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 Kommentare
Star Strider
am 21 Jun. 2020
The person whose Answer you Accepted copied my Answer. Ther is no need for me to re-post it.
ibrahim alzoubi
am 22 Jun. 2020
chill! I didn't see your comment I said. trust me I'll accept it if I saw it.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots 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!