Can anyone help me to apply RBF kernel function in matlab and how to write its equation?
13 ビュー (過去 30 日間)
古いコメントを表示
The equation is K(X,X') = exp(-||X-X'||2/2sigma2). Any help is appreciated
0 件のコメント
採用された回答
the cyclist
2021 年 5 月 10 日
編集済み: the cyclist
2021 年 5 月 10 日
% 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.)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!