4 Star 11 Fork 2

叶夜笙歌 / FastICA

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test1.m 406 Bytes
一键复制 编辑 原始数据 按行查看 历史
叶夜笙歌 提交于 2014-03-30 17:35 . FastICA盲源分离算法DEMO
clear all;
close all;
clc;
x=demosig();
icasig = fastica(x);
figure;
subplot(4,1,1);
plot(icasig(1,:));
xlabel('n');
ylabel('幅度');
title('分离信号1');
subplot(4,1,2);
plot(icasig(2,:));
xlabel('n');
ylabel('幅度');
title('分离信号2');
subplot(4,1,3);
plot(icasig(3,:));
xlabel('n');
ylabel('幅度');
title('分离信号3');
subplot(4,1,4);
plot(icasig(4,:));
xlabel('n');
ylabel('幅度');
title('分离信号4');
Matlab
1
https://gitee.com/a_bad_geek/FastICA.git
git@gitee.com:a_bad_geek/FastICA.git
a_bad_geek
FastICA
FastICA
master

搜索帮助