PCA_Principal component analysis -Dimension reduction
2 ビュー (過去 30 日間)
古いコメントを表示
I tried to apply PCA for neural network study .For training and testing data, i used the below syntax and given the output of pca
Training data is 576*10 double matrix ,
Testing data is 144*10 double matrix.
When i used the above syntax, it reduced both matrices to 10*10 double.So after performing the neural network analysis, i am getting the predicted forecasted matrix also 10*10 double.How can i reverse the values matching to the input data and plot it against time.
Kindly help
0 件のコメント
回答 (1 件)
Mohith Kulkarni
2020 年 12 月 7 日
The pca function returns the principal component coefficients, also known as loadings, for the n-by-p data matrix X. Rows of X correspond to observations and columns correspond to variables. The coefficient matrix is p-by-p. Each column of coeff contains coefficients for one principal component, and the columns are in descending order of component variance.
Check the Apply PCA to new Data section in the pca documentation to learn more on how to apply the pca to training and testing data and to get predictions using the pca applied test data.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!