Package PamUtils
Class CoordUtils
java.lang.Object
PamUtils.CoordUtils
- Author:
 - David J McLaren
 
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionstatic doubledist(double[] a, double[] b) Given two N-element vectors representing positions, return the distance between them.static doubledist(double[] a, double[] b, int n) Given two N-element vectors representing positions, return the distance between them.static doubleGiven two Coordinate3d objects, return the distance between them.static doublesumSquared(double[] x) Find the sum of squares of a vector. 
- 
Constructor Details
- 
CoordUtils
public CoordUtils() 
 - 
 - 
Method Details
- 
Pam3dRangeCalc
Given two Coordinate3d objects, return the distance between them. - 
dist
public static double dist(double[] a, double[] b) Given two N-element vectors representing positions, return the distance between them. This is just the L2-norm of the two vectors. see See also CoordUtils.norm(). - 
dist
public static double dist(double[] a, double[] b, int n) Given two N-element vectors representing positions, return the distance between them. This is just the L2-norm of the two vectors. This one differs from the one above in the N is specified explicitly.see See also CoordUtils.norm().
author Dave Mellinger
 - 
sumSquared
public static double sumSquared(double[] x) Find the sum of squares of a vector.see See also CoordUtils.dist().
author Dave Mellinger
 
 -