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/exercises/plotsined.m

5 lines
92 B
Matlab

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