Setting certain edges of a graph a different color
3 ビュー (過去 30 日間)
古いコメントを表示
Can someone show me (if possible) to change a certain edge(s) of a graph to color white like the example graph below.
0 件のコメント
回答 (1 件)
dpb
2020 年 4 月 16 日
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Specifying Target for Graphics Output についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!