pymor.algorithms.pca¶
Module Contents¶
- pymor.algorithms.pca.pca(A, product=None, modes=None, rtol=None, atol=None, l2_err=None, method=None, orth_tol=None, return_reduced_coefficients=False, copy=True)[source]¶
Principal component analysis (PCA) using
pod.The principal components of
Aare thepodmodes ofAcentered around themean.- Parameters:
- Returns:
mean –
VectorArraycontaining the empirical mean of the inputA.principal_components –
VectorArrayof principal components.svals – One-dimensional
NumPy arrayof singular values.coeffs – If
return_reduced_coefficientsisTrue, aNumPy arrayof right singular vectors as conjugated rows.