Setting certain edges of a graph a different color
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Can someone show me (if possible) to change a certain edge(s) of a graph to color white like the example graph below.
0 Kommentare
Antworten (1)
dpb
am 16 Apr. 2020
You mean like the following:
subplot(2,1,1)
plot(rand(10,1))
title('default -- top/bottom outlined w/ box on')
subplot(2,1,2)
plot(rand(10,1))
box off
title('no box -- top/bottom not outlined')
0 Kommentare
Siehe auch
Kategorien
Mehr zu Specifying Target for Graphics Output 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!