MATLAB除了生孩子,其他全都能做系列。
使用MATLAB进行播放《追光者》,纯文本内容哦。
Fs = ;
load y;
sound(y, Fs);
加载的y是哪里来的呢?当然是调用函数生成的咯。
function y = gen_wave(tone, rythm, type)
Fs = ;
freqs = [, , , , , , , , , , , , , , , , ];
x = linspace(, * pi * rythm, floor(Fs * rythm));
if type ==
y = sin(freqs(tone) * x);
else
y = sin(freqs(tone) * x) .* ( - x / ( * pi * rythm));
end
end
y中的内容就不展示了,全是数据。
链接:!!!!!
链接:https://pan.baidu.com/s/1NPh4SaAJZ3ZMiN2M98vL6g
提取码:8qpu