3 sine waves in 1 graph, same frequency different amplitude

12 次查看(过去 30 天)
im trying to plot 3 sine waves in 1 graph, same frequency different amplitude. they come up separately.
i picture is below on how i would like the sine waves to look like.
thank you

采纳的回答

Jan
Jan 2022-12-15
移动:Jan 2022-12-15
I've replaced your huge 38 MB BMP image by a 48 kB JPEG to improve the speed of loading the thread.
Which problem do you have to write the code? What does this mean: "they come up separately"?
The actual code is simple:
A = [0.2; 0.5; 1.2]; % The different amplitudes
t = linspace(0, 2*pi, 200);
plot(t, A .* sin(t))
grid on
axis tight

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

产品


版本

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by