- size(): https://www.mathworks.com/help/matlab/ref/size.html and ndims(): https://www.mathworks.com/help/matlab/ref/double.ndims.html to inspect the dimensions of the arrays and confirm they match as expected.
- reshape(): https://www.mathworks.com/help/matlab/ref/reshape.html to rearrange or reshape your arrays to match the required dimensions.
custom kernel for GPR
2 ビュー (過去 30 日間)
古いコメントを表示
I have written custom kernel for GP regression with sum of squaredexponential+whitenoise and a constant.
Working perfect when predicting the same input after gpfit. But when I upsampled the input,it is showing Arrays have incompatible sizes for this operation. But when I correct the matrix size by breaking with dbstop error, it shows error in predict and showing Error using * . Attaching my custom kernel fuction.
0 件のコメント
回答 (1 件)
Kausthub
2024 年 2 月 1 日
Hi Urmila,
I believe that you are facing an error while upsampling the input and passing it to the custom kernel for GPR. Since, you have upsampled the input, the dimensions of the input changes and leads to the "Arrays have incompatibe sizes for this operation" error. From the error message I believe that it looks like a case of dimension mismatch for the matrix multiplication operation ‘*’. I would suggest you to:
1) Cross check the dimensions of your arrays and ensure that their dimensions are compatible for the matrix multiplication operation. Below mentioned are some documentations that might be useful for you apart from using breakpoints to solve the issue:
2) Cross check whether you actually wanted to do an element wise multiplication instead of a matrix multiplication. Here is a reference to a MATLAB Answer with the exact error message which might be helpful:
Hope it helps!
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Gaussian Process Regression についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!