DistanceSSDT(VectorT, VectorT) Method |
Sum of Squared Difference (SSD), i.e. the squared L2-norm (Euclidean) of the difference.
Namespace: Altaxo.CalcAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static double SSD<T>(
Vector<T> a,
Vector<T> b
)
where T : struct, new(), IEquatable<T>, IFormattable
Parameters
- a VectorT
- The first vector.
- b VectorT
- The second vector.
Type Parameters
- T
- The type of the vector elements.
Return Value
DoubleThe distance value.
See Also