Click or drag to resize

MoreMath Class

Contains additional basic math operations.
Inheritance Hierarchy
SystemObject
  Meta.NumericsMoreMath

Namespace:  Meta.Numerics
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public static class MoreMath

The MoreMath type exposes the following members.

Methods
  NameDescription
Public methodStatic memberCos
Computes the cosine of the given value to full significance over the full range of arguments.
Public methodStatic memberCosPi
Computes the cosine of the given multiple of π.
Public methodStatic memberExpMinusOne
Computes ex-1.
Public methodStatic memberHypot
Computes the length of a right triangle's hypotenuse.
Public methodStatic memberLogOnePlus
Computes log(1+x).
Public methodStatic memberMod
Returns the value of n mod m.
Public methodStatic memberPow
Raises an argument to an integer power.
Public methodStatic memberSin
Computes the sine of the given value to full significance over the full range of arguments.
Public methodStatic memberSinc
Computes the sinc function.
Public methodStatic memberSincPi
Computes the sinc of the given multiple of π.
Public methodStatic memberSinPi
Computes the sine of the given multiple of π.
Public methodStatic memberSqr
Computes x2.
Top
Fields
  NameDescription
Public fieldStatic memberDegrees
The conversion factor from degrees to radians.
Top
Remarks

The Math class defines many basic math operations, but a few that are important for optimal numerical practice are missing. They are defined by this class.

See Also