how to hide line in gui

2 次查看(过去 30 天)
singh
singh 2015-5-28
i wish to hide line on 2d graph
plot([nodes(i,2) nodes(j,2)],[nodes(i,3) nodes(j,3)],'k.-')
i wish to hide this lines like below image but in below image i draw line with background color that time it is not produce good 2d graph because some time it overwrite the line on node no.so please help me to hide these lines because i wish to draw only red line between source node to destination node

回答(1 个)

Walter Roberson
Walter Roberson 2015-5-28
Change your
plot([nodes(i,2) nodes(j,2)],[nodes(i,3) nodes(j,3)],'k.-')
to
plot([nodes(i,2) nodes(j,2)],[nodes(i,3) nodes(j,3)],'k.')

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by