Effacer les filtres
Effacer les filtres

How to create helical sinusoidal plot in matlab

2 vues (au cours des 30 derniers jours)
NIHAD NAJEEB
NIHAD NAJEEB le 6 Nov 2021
I want this plot
By using the below code I obtained the result as shown
dh = 0.5;
a = 42;
h = 20;
R = 45;
N = h/dh;
m = 1;
for n = 0:1:360*N
z(m)= 0-((dh/360)*n);
r = R -(((dh/360)*n)/tand(a));
x(m)=(r)*cosd(n);
y(m)=(r)*sind(n);
m = m+1;
end
plot3(x,y,z,'b')
axis equal
What changes should I do ?

Réponse acceptée

Chunru
Chunru le 6 Nov 2021
Is this what you want?
dh = 2; %0.5; % adjust this to see more detains
a = 42;
h = 20;
R = 45;
N = h/dh;
m = 1;
for n = 0:1:360*N
z(m)= 0-((dh/360)*n) + .4*cosd(60*n); % add oscilation about z
r = R -(((dh/360)*n)/tand(a));
x(m)=(r)*cosd(n);
y(m)=(r)*sind(n);
m = m+1;
end
plot3(x,y,z,'b')
axis equal

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by