how to hide line in gui
1 回表示 (過去 30 日間)
古いコメントを表示
i wish to hide line on 2d graph
plot([nodes(i,2) nodes(j,2)],[nodes(i,3) nodes(j,3)],'k.-')
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/150692/image.jpeg)
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
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/150693/image.jpeg)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/150694/image.jpeg)
0 件のコメント
回答 (1 件)
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.')
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!