This repository has been archived on 2021-05-17. You can view files and clone it, but cannot push or open issues or pull requests.
scientificComputing/programming/sinusAmplituden.m
2015-10-06 09:51:38 +02:00

8 lines
172 B
Matlab

x = (0:0.01:2*pi);
frequenz = 1.0;
amplituden = [0.25 0.5 0.75 1.0 1.25];
hold on
for i = 1:length(amplituden)
y = sin(frequenz * x) * amplituden(i);
plot(x, y)
end