ICA(独立分量分析)快速定点算法
有多种 ICA 算法正在使用。例如Fast-ICA算法,有一种由Jyh-Shing和Roger Jang开发的称为快速定点算法。 您知道是否有使用该算法的实现或示例,也许是 MATLAB?
There are several ICA algorithms in use. Such as Fast-ICA algorithm, there is one developed by Jyh-Shing and Roger Jang called a fast-fixed point algorithm.
Do you know if there is an implementation or an example using this algorithm, maybe MATLAB?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我有点困惑。您提到的 FastICA 在 MATLAB 中实现了快速定点算法。那么这就是你的答案吗?
编辑:FastICA 代码非常容易使用。它需要的唯一输入是混合信号,然后尝试将其分解。您还可以为其提供额外的输入,例如进行 PCA 等。主要的困难在于创建混合信号,该信号需要是一个 nx N 矩阵,其中 n是观测值的数量,N 是信号的长度。
下面是一个示例,首先创建一个具有 4 个观测值的信号,然后通过将该信号与一个随机信号相乘来混合该信号,最后对混合信号使用 ICA 来尝试恢复原始信号。
I'm a bit confused. FastICA, which you mention, implements the fast-fixed point algorithm in MATLAB. So that would be your answer then?
EDIT: The FastICA code is pretty easy to use. The only input it needs is a mixed signal, which it then tries to unmix. You can also give it additional inputs, like doing PCA, etc.. The main difficulty is in creating the mixed signal, which needs to be a n x N matrix, with n being the number of observations and N the length of the signal.
Here is an example that first creates one signal with 4 observations, then mixes that signal by multiplying it with a random signal, and finally uses ICA on the mixed signal to try to recover the orignal signal.