Skip to content

Commit

Permalink
ICA now works with things other than Float64 (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
oxinabox authored and ararslan committed Sep 6, 2018
1 parent ca576a4 commit 4b6b8d2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/source/ica.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ The package uses a type ``ICA``, defined below, to represent an ICA model:

.. code-block:: julia
type ICA
mean::Vector{Float64} # mean vector, of length m (or empty to indicate zero mean)
W::Matrix{Float64} # component coefficient matrix, of size (m, k)
mutable struct ICA{T<:Real}
mean::Vector{T} # mean vector, of length m (or empty to indicate zero mean)
W::Matrix{T} # component coefficient matrix, of size (m, k)
end
**Note:** Each column of ``W`` here corresponds to an independent component.
Expand Down

0 comments on commit 4b6b8d2

Please # to comment.