inverse returns the inverse of this quaternion as a new quaternion. If this quaternion does not have an inverse (if its normal is 0 or less), then null is returned.
@return the inverse of this quaternion or null if the inverse does notexist.
This function computes the inverse of a given matrix using the Gauss- Elimination method. An exception is thrown if the matrix has no inverse
@param coef the matrix which inverse matrix is needed
@return inverse matrix of the input matrix.If the matrix is singular, null is returned.
@throws RuntimeException if the given matrix is not invertible
Creates the inverse transform of this object. The target of the inverse transform is the source of the original. The source of the inverse transform is the target of the original. Using the original transform followed by the inverse's transform will result in an identity map on the source coordinate space, when allowances for error are made. This method may fail if the transform is not one to one. However, all cartographic projections should succeed.
@return The inverse transform.
@throws NoninvertibleTransformException if the transform can't be inversed.
Creates the inverse transform of this object.
@return The inverse transform.
@throws NoninvertibleTransformException if the transform can't be inversed.
@since GeoAPI 2.2
Creates the inverse transform of this object.
@return The inverse transform.
@throws NoninvertibleTransformException if the transform can't be inversed.
@since GeoAPI 2.2
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.