码迷,mamicode.com
首页 > 其他好文 > 详细

Matlab实现《追光者》简谱

时间:2019-04-06 20:27:09      阅读:440      评论:0      收藏:0      [点我收藏+]

标签:展示   除了   UNC   函数   type   其他   function   func   com   

MATLAB除了生孩子,其他全都能做系列。

使用MATLAB进行播放《追光者》,纯文本内容哦。

1 Fs = 8192;
2 load y;
3 sound(y, Fs);

加载的y是哪里来的呢?当然是调用函数生成的咯。

function y = gen_wave(tone, rythm, type)
    Fs = 8192;
    freqs = [261, 293, 329, 349, 392, 440, 494, 523, 587, 659, 698, 783, 880, 988, 1046, 1174, 0];
    x = linspace(0, 2 * pi * rythm, floor(Fs * rythm));
    if type == 1
        y = sin(freqs(tone) * x);
    else
        y = sin(freqs(tone) * x) .* (1 - x / (2 * pi * rythm));
    end
end

y中的内容就不展示了,全是数据。

链接:!!!!!

链接:https://pan.baidu.com/s/1NPh4SaAJZ3ZMiN2M98vL6g
提取码:8qpu

Matlab实现《追光者》简谱

标签:展示   除了   UNC   函数   type   其他   function   func   com   

原文地址:https://www.cnblogs.com/Super-Lee/p/10662723.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!