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!