Student[NumericalAnalysis]
Distance
compute the distance between two matrices or vectors
Calling Sequence
Parameters
Description
Examples
Distance(A, B, p)
A
-
Matrix or Vector
B
p
nonnegative, infinity, -infinity, Frobenius, Euclidean; the norm selector
The Distance command computes the distance (the norm of the difference) between two matrices or two vectors with respect to a specified p-norm. For more information on various norms that can be computed, see Student,LinearAlgebra,Norm.
If A and B are both matrices then p must be one of 1, 2, infinity, Frobenius, or Euclidean.
If A and B are both vectors then p must be one of a non-negative number, infinity, -infinity, Frobenius, or Euclidean.
A and B must both be either vectors or matrices, not one of each.
with⁡StudentNumericalAnalysis:
A≔Matrix⁡1.432,5.223,6.444,5.325,7.453,8.223,6.432,8.343,8.222
A≔1.4325.2236.4445.3257.4538.2236.4328.3438.222
B≔Matrix⁡5.224,9.809,8.932,0.424,8.453,3.532,2.533,9.435,0.423
B≔5.2249.8098.9320.4248.4533.5322.5339.4350.423
Distance⁡A,B,∞
12.790
Distance⁡A,B,Frobenius
12.87808806
Distance⁡A,B,1
14.978
a≔Vector⁡2.42,5.34,8.78,0.42
a≔2.425.348.780.42
b≔Vector⁡4.32,9.32,6.22,1.33
b≔4.329.326.221.33
Distance⁡a,b,3.1
4.401239994
Distance⁡a,b,−∞
0.91
See Also
LinearAlgebra[Norm]
Student[LinearAlgebra]
Student[NumericalAnalysis][ComputationOverview]
Download Help Document