annotate toolboxes/FullBNT-1.0.7/KPMstats/parzenC_test.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 d = 2; M = 3; Q = 4; T = 5; Sigma = 10;
|
Daniel@0
|
2 N = sample_discrete(normalize(ones(1,M)), 1, Q);
|
Daniel@0
|
3 data = randn(d,T);
|
Daniel@0
|
4 mu = randn(d,M,Q);
|
Daniel@0
|
5
|
Daniel@0
|
6 [BM, B2M] = parzen(data, mu, Sigma, N);
|
Daniel@0
|
7 [B, B2] = parzenC(data, mu, Sigma, N);
|
Daniel@0
|
8
|
Daniel@0
|
9 approxeq(B,BM)
|
Daniel@0
|
10 approxeq(B2,B2M)
|