How to code to form such type of figure? what is the name of such type of graph?
    2 ビュー (過去 30 日間)
  
       古いコメントを表示
    
回答 (1 件)
  Yongjian Feng
    
 2021 年 11 月 18 日
        It is called circular plot. matlab polarplot can do similar thing:
x = linspace(0, 100)
y = x
plot(x, y) % a normal plot
polarplot(x, y) % compare this
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

