Can anyone help me to apply RBF kernel function in matlab and how to write its equation?
13 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
MINO GEORGE
le 10 Mai 2021
Commenté : MINO GEORGE
le 12 Mai 2021
The equation is K(X,X') = exp(-||X-X'||2/2sigma2). Any help is appreciated
0 commentaires
Réponse acceptée
the cyclist
le 10 Mai 2021
Modifié(e) : the cyclist
le 10 Mai 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.)
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!