This repository has been archived on 2021-05-17. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
scientificComputing/programming/exercises/plotsined.m
2016-11-22 09:26:50 +01:00

5 lines
92 B
Matlab

freq = 5.0;
ampl = 2.0;
[time, sine] = sinewave(freq, ampl, 1.5);
plotsinewave(time, sine);