How to code to form such type of figure? what is the name of such type of graph?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/804954/image.png)
0 Kommentare
Antworten (1)
Yongjian Feng
am 18 Nov. 2021
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
1 Kommentar
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!