Can anyone help me to apply RBF kernel function in matlab and how to write its equation?
15 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
MINO GEORGE
il 10 Mag 2021
Commentato: MINO GEORGE
il 12 Mag 2021
The equation is K(X,X') = exp(-||X-X'||2/2sigma2). Any help is appreciated
0 Commenti
Risposta accettata
the cyclist
il 10 Mag 2021
Modificato: the cyclist
il 10 Mag 2021
% Define sigma
sigma = 0.4;
% Define the function
K = @(x1,x2) exp(-sum((x1-x2).^2)./(2.*sigma.^2));
% Apply the function to two vectors
K([1; 2; 3],[1; 2; 4])
(I think I got the norm part coded right, but you should double-check that because I didn't.)
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Image Processing Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!