ParaMonte Fortran 2.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation.
pm_distanceMahal::getDisMahalSq Interface Reference

Generate and return the square of the Mahalanobis distance of a (set of npnt) point(s) from a single (or a set of nsam independent) sample(s) characterized by a (set of) Multivariate Normal (MVN) distribution(s) in ndim dimensions. More...

Detailed Description

Generate and return the square of the Mahalanobis distance of a (set of npnt) point(s) from a single (or a set of nsam independent) sample(s) characterized by a (set of) Multivariate Normal (MVN) distribution(s) in ndim dimensions.

See pm_distanceMahal for the mathematical definition of the Mahalanobis distance.

Parameters
[in]point: The input scalar, or vector of size ndim, or array of shape (ndim, npnt) of either
  1. type complex of kind any supported by the processor (e.g., CK, CK32, CK64, or CK128), or
  2. type real of kind any supported by the processor (e.g., RK, RK32, RK64, or RK128),
representing the ndim-dimensional coordinates of (npnt) point(s) whose distance(s) from the specified MVN distribution(s) should be computed.
[in]invCov: The input scalar or matrix of shape (ndim, ndim) or array of shape (ndim, ndim, nsam) of the same type and kind as the input point, representing the inverse covariance matrix(es) of the MVN distribution(s).
(optional, default = 1 if and only if point is a scalar, otherwise, the Identity matrix of shape (ndim, ndim)).
[in]center: The input scalar or vector size ndim or matrix of shape (ndim, nsam) of the same type and kind as the input point, representing the center of the MVN distribution(s).
(optional, default = 0).
Returns
mahalSq : The output of the same type and kind as the input point representing the square of the Mahalanobis distance of point from the MVN distribution(s) specified by the arguments center and invCov.
On output, mahalSq is,
  1. a scalar if,
    1. the input point is a scalar.
    2. the input point is of shape (1:ndim) and invCov is of shape (1:ndim, 1:ndim).
  2. a vector of size (1:nsam) if the input point is of shape (1:ndim) and invCov is of shape (1:ndim, 1:ndim, 1:nsam).
  3. a vector of size (1:npnt) if the input point is of shape (1:ndim, 1:npnt) and invCov is of shape (1:ndim, 1:ndim).
  4. a matrix of size (1:nsam, 1:npnt) if the input point is of shape (1:ndim, 1:npnt) and invCov is of shape (1:ndim, 1:ndim, 1:nsam).


Possible calling interfaces

mahalSq = getDisMahalSq(point, invCov) ! elemental
mahalSq = getDisMahalSq(point, invCov, mean) ! elemental
mahalSq = getDisMahalSq(point(1:ndim), invCov(1:ndim, 1:ndim))
mahalSq = getDisMahalSq(point(1:ndim), invCov(1:ndim, 1:ndim), center(1:ndim))
mahalSq(1:npnt) = getDisMahalSq(point(1:ndim, 1:npnt), invCov(1:ndim, 1:ndim))
mahalSq(1:npnt) = getDisMahalSq(point(1:ndim, 1:npnt), invCov(1:ndim, 1:ndim), center(1:ndim))
mahalSq(1:nsam) = getDisMahalSq(point(1:ndim), invCov(1:ndim, 1:ndim, 1:nsam))
mahalSq(1:nsam) = getDisMahalSq(point(1:ndim), invCov(1:ndim, 1:ndim, 1:nsam), center(1:ndim, 1:nsam))
mahalSq(1:nsam, 1:npnt) = getDisMahalSq(point(1:ndim, 1:npnt), invCov(1:ndim, 1:ndim, 1:nsam))
mahalSq(1:nsam, 1:npnt) = getDisMahalSq(point(1:ndim, 1:npnt), invCov(1:ndim, 1:ndim, 1:nsam), center(1:ndim, 1:nsam))
Generate and return the square of the Mahalanobis distance of a (set of npnt) point(s) from a single ...
This module contains classes and procedures for computing the Mahalanobis statistical distance.
Warning
The condition size(point, 1) == size(center, 1) must hold for the corresponding input arguments.
The condition all(size(point, 1) == [size(invCov, 1), size(invCov, 2)]) must hold for the corresponding input arguments.
The condition size(center, rank(center)) == size(invCov, rank(invCov)) must hold for the corresponding input arguments.
The condition isMatClass(invCov, posdefmat) must hold for the corresponding input arguments.
These conditions are verified only if the library is built with the preprocessor macro CHECK_ENABLED=1.
The pure procedure(s) documented herein become impure when the ParaMonte library is compiled with preprocessor macro CHECK_ENABLED=1.
By default, these procedures are pure in release build and impure in debug and testing builds.
Remarks
The procedures under this generic interface are elemental only when all input arguments are scalars or arrays of the same rank as other array-like arguments.
Note
The computation of the Mahalanobis distance for complex arguments follows the normal intrinsic Fortran rules for complex arithmetic.


Example usage

1program example
2
3 use pm_kind, only: SK, IK
4 use pm_arrayFill, only: getFilled
5 use pm_distUnif, only: getUnifRand
7 use pm_distCov, only: getCovRand
10 use pm_matrixInit, only: getMatInit
11 use pm_matrixInit, only: uppLowDia
12 use pm_io, only: display_type
13
14 implicit none
15
16 integer(IK) :: ndim, npnt, nsam, isam
17
18 type(display_type) :: disp
19 disp = display_type(file = "main.out.F90")
20
21 call disp%skip()
22 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
23 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
24 call disp%show("! Compute the Mahalanobis distance squared for real-valued arguments.")
25 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
26 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
27 call disp%skip()
28
29 block
30
31 use pm_kind, only: RKG => RKS ! all other real kinds are also supported.
32 real(RKG), allocatable :: point(:,:), mahalSq(:,:), mean(:,:), invCov(:,:,:)
33
34 call disp%show("ndim = 3; npnt = 5; nsam = 2")
35 ndim = 3; npnt = 5; nsam = 2
36 call disp%show("point = getUnifRand(0., 1., ndim, npnt)")
37 point = getUnifRand(0., 1., ndim, npnt)
38 call disp%show("point")
39 call disp%show( point )
40 call disp%show("call setResized(mean, [ndim, nsam])")
41 call setResized(mean, [ndim, nsam])
42 call disp%show("call setResized(invCov, [ndim, ndim, nsam])")
43 call setResized(invCov, [ndim, ndim, nsam])
44 call disp%show("do isam = 1, nsam")
45 do isam = 1, nsam
46 call disp%show("invCov(:,:,isam) = getCovRand(mold = 1., ndim = ndim)")
47 invCov(:,:,isam) = getCovRand(mold = 1., ndim = ndim)
48 call disp%show("mean(:,isam) = getFilled(isam - 1, ndim)")
49 mean(:,isam) = getFilled(isam - 1, ndim)
50 call disp%show("end do")
51 end do
52 call disp%show("invCov")
53 call disp%show( invCov )
54 call disp%show("mean")
55 call disp%show( mean )
56 call disp%show("call setResized(mahalSq, [nsam, npnt])")
57 call setResized(mahalSq, [nsam, npnt])
58
59
60 call disp%show("mahalSq = getDisMahalSq(point, invCov) ! for a set of ndim-dimensional points against nsam independent samples centered at origin.")
61 mahalSq = getDisMahalSq(point, invCov)
62 call disp%show("mahalSq")
63 call disp%show( mahalSq )
64 call disp%show("mahalSq = getDisMahalSq(point, invCov, mean) ! for a set of ndim-dimensional points against nsam independent samples centered at mean.")
65 mahalSq = getDisMahalSq(point, invCov, mean)
66 call disp%show("mahalSq")
67 call disp%show( mahalSq )
68
69 call disp%show("mahalSq(1:nsam, 1) = getDisMahalSq(point(1:ndim, 1), invCov) ! for a single ndim-dimensional point against nsam independent samples centered at origin.")
70 mahalSq(1:nsam, 1) = getDisMahalSq(point(1:ndim, 1), invCov)
71 call disp%show("mahalSq(1:nsam, 1)")
72 call disp%show( mahalSq(1:nsam, 1) )
73 call disp%show("mahalSq(1:nsam, 1) = getDisMahalSq(point(1:ndim, 1), invCov, mean) ! for a single ndim-dimensional point against nsam independent samples centered at mean.")
74 mahalSq(1:nsam, 1) = getDisMahalSq(point(1:ndim, 1), invCov, mean)
75 call disp%show("mahalSq(1:nsam, 1)")
76 call disp%show( mahalSq(1:nsam, 1) )
77
78
79 call disp%show("mahalSq(1, 1:npnt) = getDisMahalSq(point, invCov(:,:,1)) ! for a set of ndim-dimensional points against one sample centered at origin.")
80 mahalSq(1, 1:npnt) = getDisMahalSq(point, invCov(:,:,1))
81 call disp%show("mahalSq(1, 1:npnt)")
82 call disp%show( mahalSq(1, 1:npnt) )
83 call disp%show("mahalSq(1, 1:npnt) = getDisMahalSq(point, invCov(:,:,1), mean(:,1)) ! for a set of ndim-dimensional points against one sample centered at mean.")
84 mahalSq(1, 1:npnt) = getDisMahalSq(point, invCov(:,:,1), mean(:,1))
85 call disp%show("mahalSq(1, 1:npnt)")
86 call disp%show( mahalSq(1, 1:npnt) )
87
88 call disp%show("mahalSq(1, 1) = getDisMahalSq(point(1:ndim, 1), invCov(:,:,1)) ! for a single ndim-dimensional point one sample centered at origin.")
89 mahalSq(1, 1) = getDisMahalSq(point(1:ndim, 1), invCov(:,:,1))
90 call disp%show("mahalSq(1, 1)")
91 call disp%show( mahalSq(1, 1) )
92 call disp%show("mahalSq(1, 1) = getDisMahalSq(point(1:ndim, 1), invCov(:,:,1), mean(:,1)) ! for a single ndim-dimensional point one sample centered at mean.")
93 mahalSq(1, 1) = getDisMahalSq(point(1:ndim, 1), invCov(:,:,1), mean(:,1))
94 call disp%show("mahalSq(1, 1)")
95 call disp%show( mahalSq(1, 1) )
96
97
98 call disp%show("mahalSq(1, 1:npnt) = getDisMahalSq(point(1, 1:npnt), invCov(1,1,1)) ! for a set of single-dimensional points against one sample centered at origin.")
99 mahalSq(1, 1:npnt) = getDisMahalSq(point(1, 1:npnt), invCov(1,1,1))
100 call disp%show("mahalSq(1, 1:npnt)")
101 call disp%show( mahalSq(1, 1:npnt) )
102 call disp%show("mahalSq(1, 1:npnt) = getDisMahalSq(point(1, 1:npnt), invCov(1,1,1), mean(1,1)) ! for a set of single-dimensional points against one sample centered at mean.")
103 mahalSq(1, 1:npnt) = getDisMahalSq(point(1, 1:npnt), invCov(1,1,1), mean(1,1))
104 call disp%show("mahalSq(1, 1:npnt)")
105 call disp%show( mahalSq(1, 1:npnt) )
106
107 call disp%show("mahalSq(1, 1) = getDisMahalSq(point(1, 1), invCov(1,1,1)) ! for a single single-dimensional point one sample centered at origin.")
108 mahalSq(1, 1) = getDisMahalSq(point(1, 1), invCov(1,1,1))
109 call disp%show("mahalSq(1, 1)")
110 call disp%show( mahalSq(1, 1) )
111 call disp%show("mahalSq(1, 1) = getDisMahalSq(point(1, 1), invCov(1,1,1), mean(1,1)) ! for a single single-dimensional point one sample centered at mean.")
112 mahalSq(1, 1) = getDisMahalSq(point(1, 1), invCov(1,1,1), mean(1,1))
113 call disp%show("mahalSq(1, 1)")
114 call disp%show( mahalSq(1, 1) )
115
116 end block
117
118 call disp%skip()
119 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
120 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
121 call disp%show("! Compute the Mahalanobis distance squared for complex-valued arguments.")
122 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
123 call disp%show("!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%")
124 call disp%skip()
125
126 block
127
128 use pm_kind, only: CKG => CKS ! all other complex kinds are also supported.
129 complex(CKG), allocatable :: point(:,:), mahalSq(:,:), mean(:,:), invCov(:,:,:)
130
131 call disp%show("ndim = 3; npnt = 5; nsam = 2")
132 ndim = 3; npnt = 5; nsam = 2
133 call disp%show("point = getUnifRand(0., 1., ndim, npnt)")
134 point = getUnifRand(0., 1., ndim, npnt)
135 call disp%show("point")
136 call disp%show( point )
137 call disp%show("call setResized(mean, [ndim, nsam])")
138 call setResized(mean, [ndim, nsam])
139 call disp%show("call setResized(invCov, [ndim, ndim, nsam])")
140 call setResized(invCov, [ndim, ndim, nsam])
141 call disp%show("do isam = 1, nsam")
142 do isam = 1, nsam
143 call disp%show("invCov(:,:,isam) = getCovRand(mold = (1., 1.), ndim = ndim)")
144 invCov(:,:,isam) = getCovRand(mold = (1., 1.), ndim = ndim)
145 call disp%show("mean(:,isam) = getFilled(isam - 1, ndim)")
146 mean(:,isam) = getFilled(isam - 1, ndim)
147 call disp%show("end do")
148 end do
149 call disp%show("invCov")
150 call disp%show( invCov )
151 call disp%show("mean")
152 call disp%show( mean )
153 call disp%show("call setResized(mahalSq, [nsam, npnt])")
154 call setResized(mahalSq, [nsam, npnt])
155
156
157 call disp%show("mahalSq = getDisMahalSq(point, invCov) ! for a set of ndim-dimensional points against nsam independent samples centered at origin.")
158 mahalSq = getDisMahalSq(point, invCov)
159 call disp%show("mahalSq")
160 call disp%show( mahalSq )
161 call disp%show("mahalSq = getDisMahalSq(point, invCov, mean) ! for a set of ndim-dimensional points against nsam independent samples centered at mean.")
162 mahalSq = getDisMahalSq(point, invCov, mean)
163 call disp%show("mahalSq")
164 call disp%show( mahalSq )
165
166 call disp%show("mahalSq(1:nsam, 1) = getDisMahalSq(point(1:ndim, 1), invCov) ! for a single ndim-dimensional point against nsam independent samples centered at origin.")
167 mahalSq(1:nsam, 1) = getDisMahalSq(point(1:ndim, 1), invCov)
168 call disp%show("mahalSq(1:nsam, 1)")
169 call disp%show( mahalSq(1:nsam, 1) )
170 call disp%show("mahalSq(1:nsam, 1) = getDisMahalSq(point(1:ndim, 1), invCov, mean) ! for a single ndim-dimensional point against nsam independent samples centered at mean.")
171 mahalSq(1:nsam, 1) = getDisMahalSq(point(1:ndim, 1), invCov, mean)
172 call disp%show("mahalSq(1:nsam, 1)")
173 call disp%show( mahalSq(1:nsam, 1) )
174
175
176 call disp%show("mahalSq(1, 1:npnt) = getDisMahalSq(point, invCov(:,:,1)) ! for a set of ndim-dimensional points against one sample centered at origin.")
177 mahalSq(1, 1:npnt) = getDisMahalSq(point, invCov(:,:,1))
178 call disp%show("mahalSq(1, 1:npnt)")
179 call disp%show( mahalSq(1, 1:npnt) )
180 call disp%show("mahalSq(1, 1:npnt) = getDisMahalSq(point, invCov(:,:,1), mean(:,1)) ! for a set of ndim-dimensional points against one sample centered at mean.")
181 mahalSq(1, 1:npnt) = getDisMahalSq(point, invCov(:,:,1), mean(:,1))
182 call disp%show("mahalSq(1, 1:npnt)")
183 call disp%show( mahalSq(1, 1:npnt) )
184
185 call disp%show("mahalSq(1, 1) = getDisMahalSq(point(1:ndim, 1), invCov(:,:,1)) ! for a single ndim-dimensional point one sample centered at origin.")
186 mahalSq(1, 1) = getDisMahalSq(point(1:ndim, 1), invCov(:,:,1))
187 call disp%show("mahalSq(1, 1)")
188 call disp%show( mahalSq(1, 1) )
189 call disp%show("mahalSq(1, 1) = getDisMahalSq(point(1:ndim, 1), invCov(:,:,1), mean(:,1)) ! for a single ndim-dimensional point one sample centered at mean.")
190 mahalSq(1, 1) = getDisMahalSq(point(1:ndim, 1), invCov(:,:,1), mean(:,1))
191 call disp%show("mahalSq(1, 1)")
192 call disp%show( mahalSq(1, 1) )
193
194
195 call disp%show("mahalSq(1, 1:npnt) = getDisMahalSq(point(1, 1:npnt), invCov(1,1,1)) ! for a set of single-dimensional points against one sample centered at origin.")
196 mahalSq(1, 1:npnt) = getDisMahalSq(point(1, 1:npnt), invCov(1,1,1))
197 call disp%show("mahalSq(1, 1:npnt)")
198 call disp%show( mahalSq(1, 1:npnt) )
199 call disp%show("mahalSq(1, 1:npnt) = getDisMahalSq(point(1, 1:npnt), invCov(1,1,1), mean(1,1)) ! for a set of single-dimensional points against one sample centered at mean.")
200 mahalSq(1, 1:npnt) = getDisMahalSq(point(1, 1:npnt), invCov(1,1,1), mean(1,1))
201 call disp%show("mahalSq(1, 1:npnt)")
202 call disp%show( mahalSq(1, 1:npnt) )
203
204 call disp%show("mahalSq(1, 1) = getDisMahalSq(point(1, 1), invCov(1,1,1)) ! for a single single-dimensional point one sample centered at origin.")
205 mahalSq(1, 1) = getDisMahalSq(point(1, 1), invCov(1,1,1))
206 call disp%show("mahalSq(1, 1)")
207 call disp%show( mahalSq(1, 1) )
208 call disp%show("mahalSq(1, 1) = getDisMahalSq(point(1, 1), invCov(1,1,1), mean(1,1)) ! for a single single-dimensional point one sample centered at mean.")
209 mahalSq(1, 1) = getDisMahalSq(point(1, 1), invCov(1,1,1), mean(1,1))
210 call disp%show("mahalSq(1, 1)")
211 call disp%show( mahalSq(1, 1) )
212
213 end block
214
215end program example
Generate and return an array of the specified rank and shape of arbitrary intrinsic type and kind wit...
Allocate or resize (shrink or expand) an input allocatable scalar string or array of rank 1....
Generate and return a random positive-definite (correlation or covariance) matrix using the Gram meth...
Definition: pm_distCov.F90:394
Generate and return a scalar or a contiguous array of rank 1 of length s1 of randomly uniformly distr...
This is a generic method of the derived type display_type with pass attribute.
Definition: pm_io.F90:11726
This is a generic method of the derived type display_type with pass attribute.
Definition: pm_io.F90:11508
Generate and return a matrix of shape (shape(1), shape(2)) with the upper/lower triangle and the diag...
Generate a sample of shape (nsam), or (ndim, nsam) or (nsam, ndim) that is shifted by the specified i...
This module contains procedures and generic interfaces for convenient allocation and filling of array...
This module contains procedures and generic interfaces for resizing allocatable arrays of various typ...
This module contains classes and procedures for generating random matrices distributed on the space o...
Definition: pm_distCov.F90:72
This module contains classes and procedures for computing various statistical quantities related to t...
This module contains classes and procedures for input/output (IO) or generic display operations on st...
Definition: pm_io.F90:252
type(display_type) disp
This is a scalar module variable an object of type display_type for general display.
Definition: pm_io.F90:11393
This module defines the relevant Fortran kind type-parameters frequently used in the ParaMonte librar...
Definition: pm_kind.F90:268
integer, parameter CKS
The single-precision complex kind in Fortran mode. On most platforms, this is a 32-bit real kind.
Definition: pm_kind.F90:570
integer, parameter IK
The default integer kind in the ParaMonte library: int32 in Fortran, c_int32_t in C-Fortran Interoper...
Definition: pm_kind.F90:540
integer, parameter SK
The default character kind in the ParaMonte library: kind("a") in Fortran, c_char in C-Fortran Intero...
Definition: pm_kind.F90:539
integer, parameter RKS
The single-precision real kind in Fortran mode. On most platforms, this is an 32-bit real kind.
Definition: pm_kind.F90:567
This module contains procedures and generic interfaces relevant to generating and initializing matric...
This module contains classes and procedures for shifting univariate or multivariate samples by arbitr...
Generate and return an object of type display_type.
Definition: pm_io.F90:10282

Example Unix compile command via Intel ifort compiler
1#!/usr/bin/env sh
2rm main.exe
3ifort -fpp -standard-semantics -O3 -Wl,-rpath,../../../lib -I../../../inc main.F90 ../../../lib/libparamonte* -o main.exe
4./main.exe

Example Windows Batch compile command via Intel ifort compiler
1del main.exe
2set PATH=..\..\..\lib;%PATH%
3ifort /fpp /standard-semantics /O3 /I:..\..\..\include main.F90 ..\..\..\lib\libparamonte*.lib /exe:main.exe
4main.exe

Example Unix / MinGW compile command via GNU gfortran compiler
1#!/usr/bin/env sh
2rm main.exe
3gfortran -cpp -ffree-line-length-none -O3 -Wl,-rpath,../../../lib -I../../../inc main.F90 ../../../lib/libparamonte* -o main.exe
4./main.exe

Example output
1
2!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4! Compute the Mahalanobis distance squared for real-valued arguments.
5!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
7
8ndim = 3; npnt = 5; nsam = 2
9point = getUnifRand(0., 1., ndim, npnt)
10point
11+0.227263033, +0.814260185, +0.936079562, +0.353454351E-1, +0.560936987
12+0.366553307, +0.500061393, +0.896880031E-1, +0.608710349, +0.937878370
13+0.725652695, +0.309172750, +0.413336277, +0.346963942, +0.163778782
14call setResized(mean, [ndim, nsam])
15call setResized(invCov, [ndim, ndim, nsam])
16do isam = 1, nsam
17invCov(:,:,isam) = getCovRand(mold = 1., ndim = ndim)
18mean(:,isam) = getFilled(isam - 1, ndim)
19end do
20invCov(:,:,isam) = getCovRand(mold = 1., ndim = ndim)
21mean(:,isam) = getFilled(isam - 1, ndim)
22end do
23invCov
24slice(:,:,1) =
25+1.00000000, +0.965279102, +0.103925146
26+0.965279102, +1.00000000, +0.189933330
27+0.103925146, +0.189933330, +1.00000000
28slice(:,:,2) =
29+1.00000000, +0.549550951, +0.158036992
30+0.549550951, +1.00000000, -0.731768191
31+0.158036992, -0.731768191, +1.00000000
32mean
33+0.00000000, +1.00000000
34+0.00000000, +1.00000000
35+0.00000000, +1.00000000
36call setResized(mahalSq, [nsam, npnt])
37mahalSq = getDisMahalSq(point, invCov) ! for a set of ndim-dimensional points against nsam independent samples centered at origin.
38mahalSq
39+1.00872326, +1.90580869, +1.31171870, +0.616474807, +2.31418276
40+0.466979682, +1.30950141, +1.21544981, +0.210585415, +1.60354853
41mahalSq = getDisMahalSq(point, invCov, mean) ! for a set of ndim-dimensional points against nsam independent samples centered at mean.
42mahalSq
43+1.00872326, +1.90580869, +1.31171870, +0.616474807, +2.31418276
44+1.42430770, +0.398834527, +0.471137583, +1.75012875, +0.965900481
45mahalSq(1:nsam, 1) = getDisMahalSq(point(1:ndim, 1), invCov) ! for a single ndim-dimensional point against nsam independent samples centered at origin.
46mahalSq(1:nsam, 1)
47+1.00872326, +0.466979682
48mahalSq(1:nsam, 1) = getDisMahalSq(point(1:ndim, 1), invCov, mean) ! for a single ndim-dimensional point against nsam independent samples centered at mean.
49mahalSq(1:nsam, 1)
50+1.00872326, +1.42430770
51mahalSq(1, 1:npnt) = getDisMahalSq(point, invCov(:,:,1)) ! for a set of ndim-dimensional points against one sample centered at origin.
52mahalSq(1, 1:npnt)
53+1.00872326, +1.90580869, +1.31171870, +0.616474807, +2.31418276
54mahalSq(1, 1:npnt) = getDisMahalSq(point, invCov(:,:,1), mean(:,1)) ! for a set of ndim-dimensional points against one sample centered at mean.
55mahalSq(1, 1:npnt)
56+1.00872326, +1.90580869, +1.31171870, +0.616474807, +2.31418276
57mahalSq(1, 1) = getDisMahalSq(point(1:ndim, 1), invCov(:,:,1)) ! for a single ndim-dimensional point one sample centered at origin.
58mahalSq(1, 1)
59+1.00872326
60mahalSq(1, 1) = getDisMahalSq(point(1:ndim, 1), invCov(:,:,1), mean(:,1)) ! for a single ndim-dimensional point one sample centered at mean.
61mahalSq(1, 1)
62+1.00872326
63mahalSq(1, 1:npnt) = getDisMahalSq(point(1, 1:npnt), invCov(1,1,1)) ! for a set of single-dimensional points against one sample centered at origin.
64mahalSq(1, 1:npnt)
65+0.516484864E-1, +0.663019657, +0.876244962, +0.124929973E-2, +0.314650297
66mahalSq(1, 1:npnt) = getDisMahalSq(point(1, 1:npnt), invCov(1,1,1), mean(1,1)) ! for a set of single-dimensional points against one sample centered at mean.
67mahalSq(1, 1:npnt)
68+0.516484864E-1, +0.663019657, +0.876244962, +0.124929973E-2, +0.314650297
69mahalSq(1, 1) = getDisMahalSq(point(1, 1), invCov(1,1,1)) ! for a single single-dimensional point one sample centered at origin.
70mahalSq(1, 1)
71+0.516484864E-1
72mahalSq(1, 1) = getDisMahalSq(point(1, 1), invCov(1,1,1), mean(1,1)) ! for a single single-dimensional point one sample centered at mean.
73mahalSq(1, 1)
74+0.516484864E-1
75
76!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
77!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
78! Compute the Mahalanobis distance squared for complex-valued arguments.
79!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
80!%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
81
82ndim = 3; npnt = 5; nsam = 2
83point = getUnifRand(0., 1., ndim, npnt)
84point
85(+0.974939227, +0.00000000), (+0.189407110, +0.00000000), (+0.149843037, +0.00000000), (+0.181578040, +0.00000000), (+0.813130021, +0.00000000)
86(+0.293136060, +0.00000000), (+0.372775793, +0.00000000), (+0.420762897E-1, +0.00000000), (+0.580558598, +0.00000000), (+0.835095406, +0.00000000)
87(+0.647152960, +0.00000000), (+0.150994837, +0.00000000), (+0.972009361, +0.00000000), (+0.169030070, +0.00000000), (+0.745272636E-1, +0.00000000)
88call setResized(mean, [ndim, nsam])
89call setResized(invCov, [ndim, ndim, nsam])
90do isam = 1, nsam
91invCov(:,:,isam) = getCovRand(mold = (1., 1.), ndim = ndim)
92mean(:,isam) = getFilled(isam - 1, ndim)
93end do
94invCov(:,:,isam) = getCovRand(mold = (1., 1.), ndim = ndim)
95mean(:,isam) = getFilled(isam - 1, ndim)
96end do
97invCov
98slice(:,:,1) =
99(+1.00000000, +0.00000000), (-0.424647272, +0.422303826), (-0.741818905, -0.360750645)
100(-0.424647272, -0.422303826), (+1.00000000, +0.00000000), (+0.462053418, +0.331803977)
101(-0.741818905, +0.360750645), (+0.462053418, -0.331803977), (+1.00000000, +0.00000000)
102slice(:,:,2) =
103(+1.00000000, +0.00000000), (+0.940422535, -0.178139746), (+0.933938980, -0.188135073)
104(+0.940422535, +0.178139746), (+1.00000000, +0.00000000), (+0.662355781, +0.195300221)
105(+0.933938980, +0.188135073), (+0.662355781, -0.195300221), (+1.00000000, +0.00000000)
106mean
107(+0.00000000, +0.00000000), (+1.00000000, +0.00000000)
108(+0.00000000, +0.00000000), (+1.00000000, +0.00000000)
109(+0.00000000, +0.00000000), (+1.00000000, +0.00000000)
110call setResized(mahalSq, [nsam, npnt])
111mahalSq = getDisMahalSq(point, invCov) ! for a set of ndim-dimensional points against nsam independent samples centered at origin.
112mahalSq
113(+0.451750368, +0.149011612E-7), (+0.147254780, +0.931322575E-9), (+0.785375357, +0.372529030E-8), (+0.354208529, +0.00000000), (+0.755018175, -0.104773790E-7)
114(+3.42258072, +0.00000000), (+0.458420634, +0.186264515E-8), (+1.30711699, +0.186264515E-8), (+0.784188151, +0.186264515E-8), (+2.83693099, -0.114669092E-7)
115mahalSq = getDisMahalSq(point, invCov, mean) ! for a set of ndim-dimensional points against nsam independent samples centered at mean.
116mahalSq
117(+0.451750368, +0.149011612E-7), (+0.147254780, +0.931322575E-9), (+0.785375357, +0.372529030E-8), (+0.354208529, +0.00000000), (+0.755018175, -0.104773790E-7)
118(+1.00502372, +0.00000000), (+4.71844673, -0.149011612E-7), (+3.25286961, -0.372529030E-8), (+3.91394639, +0.186264515E-7), (+1.50178027, +0.395812094E-8)
119mahalSq(1:nsam, 1) = getDisMahalSq(point(1:ndim, 1), invCov) ! for a single ndim-dimensional point against nsam independent samples centered at origin.
120mahalSq(1:nsam, 1)
121(+0.451750368, +0.149011612E-7), (+3.42258072, +0.00000000)
122mahalSq(1:nsam, 1) = getDisMahalSq(point(1:ndim, 1), invCov, mean) ! for a single ndim-dimensional point against nsam independent samples centered at mean.
123mahalSq(1:nsam, 1)
124(+0.451750368, +0.149011612E-7), (+1.00502372, +0.00000000)
125mahalSq(1, 1:npnt) = getDisMahalSq(point, invCov(:,:,1)) ! for a set of ndim-dimensional points against one sample centered at origin.
126mahalSq(1, 1:npnt)
127(+0.451750368, +0.149011612E-7), (+0.147254780, +0.931322575E-9), (+0.785375357, +0.372529030E-8), (+0.354208529, +0.00000000), (+0.755018175, -0.104773790E-7)
128mahalSq(1, 1:npnt) = getDisMahalSq(point, invCov(:,:,1), mean(:,1)) ! for a set of ndim-dimensional points against one sample centered at mean.
129mahalSq(1, 1:npnt)
130(+0.451750368, +0.149011612E-7), (+0.147254780, +0.931322575E-9), (+0.785375357, +0.372529030E-8), (+0.354208529, +0.00000000), (+0.755018175, -0.104773790E-7)
131mahalSq(1, 1) = getDisMahalSq(point(1:ndim, 1), invCov(:,:,1)) ! for a single ndim-dimensional point one sample centered at origin.
132mahalSq(1, 1)
133(+0.451750368, +0.149011612E-7)
134mahalSq(1, 1) = getDisMahalSq(point(1:ndim, 1), invCov(:,:,1), mean(:,1)) ! for a single ndim-dimensional point one sample centered at mean.
135mahalSq(1, 1)
136(+0.451750368, +0.149011612E-7)
137mahalSq(1, 1:npnt) = getDisMahalSq(point(1, 1:npnt), invCov(1,1,1)) ! for a set of single-dimensional points against one sample centered at origin.
138mahalSq(1, 1:npnt)
139(+0.950506508, +0.00000000), (+0.358750522E-1, +0.00000000), (+0.224529356E-1, +0.00000000), (+0.329705849E-1, +0.00000000), (+0.661180437, +0.00000000)
140mahalSq(1, 1:npnt) = getDisMahalSq(point(1, 1:npnt), invCov(1,1,1), mean(1,1)) ! for a set of single-dimensional points against one sample centered at mean.
141mahalSq(1, 1:npnt)
142(+0.950506508, +0.00000000), (+0.358750522E-1, +0.00000000), (+0.224529356E-1, +0.00000000), (+0.329705849E-1, +0.00000000), (+0.661180437, +0.00000000)
143mahalSq(1, 1) = getDisMahalSq(point(1, 1), invCov(1,1,1)) ! for a single single-dimensional point one sample centered at origin.
144mahalSq(1, 1)
145(+0.950506508, +0.00000000)
146mahalSq(1, 1) = getDisMahalSq(point(1, 1), invCov(1,1,1), mean(1,1)) ! for a single single-dimensional point one sample centered at mean.
147mahalSq(1, 1)
148(+0.950506508, +0.00000000)
149
Test:
test_pm_distanceMahal
Todo:
Critical Priority: The runtime checks for the complex input invCov must be implemented.


Final Remarks


If you believe this algorithm or its documentation can be improved, we appreciate your contribution and help to edit this page's documentation and source file on GitHub.
For details on the naming abbreviations, see this page.
For details on the naming conventions, see this page.
This software is distributed under the MIT license with additional terms outlined below.

  1. If you use any parts or concepts from this library to any extent, please acknowledge the usage by citing the relevant publications of the ParaMonte library.
  2. If you regenerate any parts/ideas from this library in a programming environment other than those currently supported by this ParaMonte library (i.e., other than C, C++, Fortran, MATLAB, Python, R), please also ask the end users to cite this original ParaMonte library.

This software is available to the public under a highly permissive license.
Help us justify its continued development and maintenance by acknowledging its benefit to society, distributing it, and contributing to it.

Author:
Amir Shahmoradi, Monday March 6, 2017, 3:22 pm, Institute for Computational Engineering and Sciences (ICES), The University of Texas at Austin.

Definition at line 185 of file pm_distanceMahal.F90.


The documentation for this interface was generated from the following file: