PCA function suddenly Stop working with error
6 ビュー (過去 30 日間)
古いコメントを表示
Hi everyone,
I'm using PCA to reduce the dimensions of my data and it was working without any problems, then when I came the next day and ran the MATLAB the PCA started throwing errors. I tried the exact example from MATLAB documentation (including using the same data in the example) but same error. below is my code followed by the error:
load hald
coeff = pca(ingredients)
the error:
Error using pcaklm (line 73)
Unknown type specified
Error in pca (line 53)
[w,truefrac] = pcaklm(mfilename,varargin{:});
------------------------------------------------------------------------------------------------------
My MATLAB version is R2021b
My OS is Ubuntu LTS 20.04
0 件のコメント
採用された回答
the cyclist
2023 年 7 月 22 日
The line
[w,truefrac] = pcaklm(mfilename,varargin{:});
Try calling
which pca -all
from the command line to see what functions are in your path.
An internet search on pcaklm suggests that you might inadvertently be calling the ECGdeli Toolbox version. Perhaps you installed that?
3 件のコメント
the cyclist
2023 年 7 月 25 日
I think the easiest solution for you is to use pathtool to move the Stats toolbox version of pca to be higher priority than the ECGdeli version.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!