Skip to content

PC1_eigenVectors has changed #3

Description

@fanjingrong

The wrong file as follows:
#Generate PC1 eigenvectors
evect = pca.eigenvectors
PC1 = np.reshape(evect[0,:],(1300, 3))
np.savetxt("PC1_eigenVectors.dat", PC1, delimiter=" ", fmt="%8.5f")
The wrong file has been changed as follows:
#Generate PC1 eigenvectors file
evect = pca.eigenvectors
PC1 = np.reshape(evect[:,0],(1300, 3))
np.savetxt("PC1_eigenVectors.dat", PC1, delimiter=" ", fmt="%8.5f")

The main question: evect[0,:]

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions