custom kernel for GPR

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.

Answers (1)

Kausthub
Kausthub on 1 Feb 2024

0 votes

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!

Products

Release

R2021b

Tags

Asked:

on 18 Feb 2022

Answered:

on 1 Feb 2024

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!