Mercurial > hg > camir-ismir2012
annotate toolboxes/distance_learning/mlr/distance/setDistanceDiag.m @ 0:cc4b1211e677 tip
initial commit to HG from
Changeset:
646 (e263d8a21543) added further path and more save "camirversion.m"
author | Daniel Wolff |
---|---|
date | Fri, 19 Aug 2016 13:07:06 +0200 |
parents | |
children |
rev | line source |
---|---|
Daniel@0 | 1 function D = setDistanceDiag(X, W, Ifrom, Ito) |
Daniel@0 | 2 % |
Daniel@0 | 3 % D = setDistanceDiag(X, W, Ifrom, Ito) |
Daniel@0 | 4 % |
Daniel@0 | 5 % X = d-by-n data matrix |
Daniel@0 | 6 % W = d-by-1 PSD matrix |
Daniel@0 | 7 % Ifrom = k-by-1 vector of source points |
Daniel@0 | 8 % Ito = j-by-1 vector of destination points |
Daniel@0 | 9 % |
Daniel@0 | 10 % D = n-by-n matrix of squared euclidean distances from Ifrom to Ito |
Daniel@0 | 11 % D is sparse, and only the rows corresponding to Ifrom and |
Daniel@0 | 12 % columns corresponding to Ito are populated. |
Daniel@0 | 13 |
Daniel@0 | 14 [d,n] = size(X); |
Daniel@0 | 15 L = W.^0.5; |
Daniel@0 | 16 |
Daniel@0 | 17 Vfrom = bsxfun(@times, L, X(:,Ifrom)); |
Daniel@0 | 18 |
Daniel@0 | 19 if nargin == 4 |
Daniel@0 | 20 Vto = bsxfun(@times, L, X(:,Ito)); |
Daniel@0 | 21 else |
Daniel@0 | 22 Vto = bsxfun(@times, L, X); |
Daniel@0 | 23 Ito = 1:n; |
Daniel@0 | 24 end |
Daniel@0 | 25 |
Daniel@0 | 26 D = distToFrom(n, Vto, Vfrom, Ito, Ifrom); |
Daniel@0 | 27 end |