代码搜索:FastICA
找到约 394 项符合「FastICA」的源代码
代码结果 394
www.eeworm.com/read/423552/10550634
m mfbox_fastica.m
function [Out1, Out2, Out3] = mfbox_fastica(mixedsig, varargin)
%FASTICA - Fast Independent Component Analysis
%
% FastICA for Matlab 7.x and 6.x
% Version 2.5, October 19 2005
% Copyright (c) Hugo G�
www.eeworm.com/read/348617/10880363
m fastica_algorithm.m
%FastICA algorithm
% [W,P] = fastica1(X,opts,g,gg)
%
%Input parameters
% X : Matrix with components in the columns. Components are assumed to be
% uncorrelated and have zer
www.eeworm.com/read/156528/11795002
m fastica1.m
function [W,P] = FastICA1(X,opts,g,gg)
%FastICA algorithm
% [W,P] = fastica1(X,opts,g,gg)
%
%Input parameters
% X : Matrix with components in the columns. Components are assumed to be
% uncorrel
www.eeworm.com/read/234246/14117843
m informax_fastica.m
clear all
clc
t=0:1/100:3;
s=zeros(3,length(t));
s(1,:)=sin(40*t);
s(2,:)=0.3*sawtooth(10*t);
s(3,:)=0.5*square(20*t);
figure(1),
for i=1:3,
subplot(3,1,i),plot(t,s(i,:));
axis
www.eeworm.com/read/214107/15113127
txt fastica算法代码.txt
FastICA算法代码
%对数据进行标准化
close all,clear
load np_all
normsr=zscore(npp);
features=normsr';
[r,c]= size(features);
%对数据进行白化,使之为0均值,单位协方差
features = features - mean(features')'*ones(1,c);
[E, D]
www.eeworm.com/read/200988/15418965
zip fastica_2.1.zip
www.eeworm.com/read/423552/10550220
m mfbox_fastica_run.m
function [params,A,W,S]=mfbox_fastica_run(X,mask,params,runflag)
% Copyright by Ingo R. Keck
% Signal Processing & Information Theory group
% Institute of Biophysics, University of Regensburg, Germany
www.eeworm.com/read/471334/6890110
txt fastica_2.5说明.txt
The FastICA package for MATLAB
The FastICA package is a free (GPL) MATLAB program that implements the fast fixed-point algorithm for independent component analysis and projection pursuit. It features
www.eeworm.com/read/200988/15418966