Receiving Dot Indexing is not supported for variable of this type with the plsregress function
1 回表示 (過去 30 日間)
古いコメントを表示
採用された回答
Shreeya
2024 年 9 月 4 日
Hi
I faced a similar issue with my code after migrating to MATLAB R2023b. A workaround to circumvent this problem would be to utilize a "cvpartition" object with 5 folds. Below is an example of how you can implement this:
x = randn(250, 50);
y = randn(250, 1);
cv = cvpartition(250, "KFold", 5);
plsregress(x, y, 32, 'CV', cv, 'MCReps', 10);
Let me know if this helps
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!