📄 lianxu.m
字号:
load e:\data\vfa036.dat;
x=vfa036(512:1000);
figure(1);
subplot(2,1,1);
plot(x);
% 用'db4'小波对x进行一维连续小波变换
subplot(2,1,2);
wx=cwt(x,[2:4:20],'db4','plot');
ylabel('变换尺度');
a=sum(wx(2));
load e:\data\vfa022.dat;
y=vfa022(512:1000);
figure(2);
subplot(2,1,1);
plot(y);
% 用'db4'小波对y进行一维连续小波变换
subplot(2,1,2);
wy=cwt(y,[2:4:20],'db4','plot');
ylabel('变换尺度');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -