Ridge Regression Code error message
7 次查看(过去 30 天)
显示 更早的评论
Dear,
I wrode the following comand for Ridge regression:
X = file name
x = [Crack];
y = FFT;
n = length(y);
c = cvpartition(23,'HoldOut',0.3);
>> idxTrain = training(c,1);
>> idxTest = ~idxTrain;
>> b = ridge(y(idxTrain),X(idxTrain),lambda);
The logical indices contain a true value outside of the array bounds. (I´ve got this message. What´s wrong ?)
Thanks for your support !
0 个评论
回答(1 个)
Raunak Gupta
2020-4-28
Hi,
From the code I think the cvpartition that is created should have ‘n’ number of observation instead of 23. That is why the logical vector generated by training has size mismatch compare to X or y. Changing 23 to ‘n’ should work.
2 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!