how to draw graph in matlab? Using Biograph?
7 次查看(过去 30 天)
显示 更早的评论
How to draw biograph with labels corresponding to values in p vector?
if true
p = [1,2]
for i=0 : length(p)
%how to draw biograph with label as 1 and 2
end
end
0 个评论
采纳的回答
Steven Lord
2018-6-8
If you're using release R2015b or later, consider using the graph or digraph functions included in MATLAB to draw your graph / network object.
2 个评论
Steven Lord
2018-6-8
Your question doesn't have a lot of detail about what you're trying to do, so the only general suggestion I can make is to take a look at the examples in the documentation for the graph or digraph functions, depending on whether you want an undirected or directed graph respectively.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graph and Network Algorithms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!