Filter löschen
Filter löschen

how to plot the path of circular beam oscillation welding?

1 Ansicht (letzte 30 Tage)
zhenwen lai
zhenwen lai am 12 Jul. 2023
Beantwortet: Alan Stevens am 12 Jul. 2023
hey guys i want to use matlab plot this picture(b)
here is my code:
A=1;
f=50;
vf=0.015;
time=linspace(0,2*pi);
x=A*cos(time*2*f*pi)+vf*time;
y=A*sin(time*2*f*pi);
plot(x,y);

Antworten (1)

Alan Stevens
Alan Stevens am 12 Jul. 2023
Like this?
A=1;
f=50;
vf=0.02;
time = linspace(0,100,500);
x0 = vf*time;
theta = 2*pi*f*time;
x=A*cos(theta)+x0;
y=A*sin(theta);
plot(x,y);
axis equal

Kategorien

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

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by