Skip to content

Independent Component Analysis algorithm for solving linear noise less "cocktail party problem"

License

Notifications You must be signed in to change notification settings

cschen1205/cs-ica

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cs-ica

Independent Component Analysis algorithm for solving linear noise less "cocktail party problem"

Install

Install-Package cs-ica

Usage

The library only requires one line of code to split a single source into two separate sources:

List<double[]> single_source = GetData();
List<double[]> source1;
List<double[]> source2;
ICA.LinearNoiseLessICA.solve(single_source, out source1, out source2);

About

Independent Component Analysis algorithm for solving linear noise less "cocktail party problem"

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages