8 lines
172 B
Matlab
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 |