📄 bac.m
字号:
function bac(s)
A =[0.1509 0.0784;0.6979 0.8600];
x=A*s;
subplot(521);
plot(s(1,:))
subplot(522)
plot(s(2,:))
%********************
ys=slfilter(x);
%********************
subplot(523)
plot(ys(1,:))
subplot(524)
subplot(523)
plot(x(1,:))
subplot(524)
plot(x(2,:))
subplot(525)
plot(ys(1,:))
subplot(526)
plot(ys(2,:))
%*******************
y=fastica(x);
%*******************
subplot(527)
plot(y(1,:));
subplot(528)
plot(y(2,:));
%**************
W=jadeR(x);
%**************
yj=W*x;
subplot(529)
plot(yj(1,:));
subplot(5,2,10)
plot(yj(2,:));
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -