Setting certain edges of a graph a different color

조회 수: 2 (최근 30일)
Jose Grimaldo
Jose Grimaldo 2020년 4월 15일
답변: dpb 2020년 4월 16일
Can someone show me (if possible) to change a certain edge(s) of a graph to color white like the example graph below.

답변 (1개)

dpb
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')

카테고리

Help CenterFile Exchange에서 Graph and Network Algorithms에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by