How can I plot life of tree?

1 view (last 30 days)
Kh. Islam
Kh. Islam on 26 Jul 2016
Commented: Kh. Islam on 14 Oct 2016

Accepted Answer

KSSV
KSSV on 26 Jul 2016
You may follow the below approach.....You have to draw circles and call the function rose...
clc; clear all ;
R = 1 ; % radius of circle
th = linspace(0,2*pi) ; % angle
% make circle
x = R*cos(th) ;
y = R*sin(th) ;
plot(x,y,'r') ;
hold on
% Draw roses
rose(0.01, 2, 1)
axis equal

More Answers (0)

Categories

Find more on Polar Plots in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!