Filter löschen
Filter löschen

How to create helical sinusoidal plot in matlab

2 Ansichten (letzte 30 Tage)
NIHAD NAJEEB
NIHAD NAJEEB am 6 Nov. 2021
Beantwortet: Chunru am 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 ?

Akzeptierte Antwort

Chunru
Chunru am 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

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by