Skip to content
Snippets Groups Projects
Select Git revision
  • 573ffed3e67c2cbc07205a984e5fb28de177e96d
  • main default protected
  • rosification
  • refactoring
  • pp
  • mpc
  • realtimelogplotter
  • alv
  • gitlab_ci_podman
  • restructuring
  • viz_fix
11 results

TODOS_2024-03-23

Blame
  • PCA.jl 195 B
    """ Performs PCA   PCA(W)"""
    function PCA(W)
        W0 = mean(W,1);
        W = W-repmat(W0,size(W,1),1);
        (score,latent,C) = svd(W)
        score = score*diagm(latent)
        C,score,latent,W0
    end