aboutsummaryrefslogtreecommitdiff
path: root/dist.cpp
blob: a5620ad320960a82bef76ca8632b9c011fdf275b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "mp.h"

double mp::euclidean(const arma::rowvec &x1, const arma::rowvec &x2)
{
    return arma::norm(x1 - x2, 2);
}

arma::mat mp::dist(const arma::mat &X, mp::DistFunc dfunc)
{
    arma::uword n = X.n_rows;
    arma::mat D(n, n, arma::fill::zeros);

    for (arma::uword i = 0; i < n; i++)
        for (arma::uword j = 0; j < i; j++) {
            D(i, j) = dfunc(X.row(i), X.row(j));
            D(j, i) = D(i, j);
        }

    return D;
}