📄 ttt.m
字号:
clear all; close all
addMyPath
songDb=songDbRead('childSong', 0);
track=songDb(43).track';
track=track(1:20);
track=double(track);
track(2:2:end)=track(2:2:end)/64;
pvTimeUnit=1/31.25;
duration=9;
pv = note2pv(track, pvTimeUnit, duration, 1);
fprintf('Press any key to play note...\n'); pause
notePlay(track, 1);
fprintf('Press any key to play pv...\n'); pause
pvPlay(pv, pvTimeUnit);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -