Effacer les filtres
Effacer les filtres

How can I plot life of tree?

2 vues (au cours des 30 derniers jours)
Kh. Islam
Kh. Islam le 26 Juil 2016
Commenté : Kh. Islam le 14 Oct 2016

Réponse acceptée

KSSV
KSSV le 26 Juil 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
  1 commentaire
Kh. Islam
Kh. Islam le 14 Oct 2016
Thank you very much.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Polar Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by