Borrar filtros
Borrar filtros

How can I plot life of tree?

2 visualizaciones (últimos 30 días)
Kh. Islam
Kh. Islam el 26 de Jul. de 2016
Comentada: Kh. Islam el 14 de Oct. de 2016

Respuesta aceptada

KSSV
KSSV el 26 de Jul. de 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

Más respuestas (0)

Categorías

Más información sobre Polar Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by