FastICA: Revision history

From Master of Neuroscience Wiki

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

17 October 2025

  • curprev 17:1617:16, 17 October 2025 Davrot talk contribs 9,738 bytes −17 No edit summary Tag: Visual edit
  • curprev 15:3515:35, 17 October 2025 Davrot talk contribs 9,755 bytes +9,755 Created page with "== The goal == Questions to [mailto:davrot@uni-bremen.de David Rotermund] == Test data == We rotate the blue dots with ​a non-orthogonal rotation matrix into the red dots.<syntaxhighlight lang="python">import numpy as np import matplotlib.pyplot as plt rng = np.random.default_rng(1) a_x = rng.normal(0.0, 1.0, size=(5000))[:, np.newaxis] a_y = rng.normal(0.0, 1.0, size=(5000))[:, np.newaxis] ** 3 data_a = np.concatenate((a_x, a_y), axis=1) b_x = rng.normal(0.0, 1.0,..." Tag: Visual edit