C# 클래스 xFunc.Maths.MathExtensions

Provides static methods for additional functions.
파일 보기 프로젝트 열기: sys27/xFunc

공개 메소드들

메소드 설명
Acosh ( double d ) : double

Returns the angle whose hyperbolic cosine is the specified number.

Acot ( double d ) : double

Returns the angle whose cotangent is the specified number.

Acoth ( double d ) : double

Returns the angle whose hyperbolic cotangent is the specified number.

Acsc ( double d ) : double

Returns the angle whose cosecant is the specified number.

Acsch ( double d ) : double

Returns the angle whose hyperbolic cosecant is the specified number.

Asec ( double d ) : double

Returns the angle whose secant is the specified number.

Asech ( double d ) : double

Returns the angle whose hyperbolic secant is the specified number.

Asinh ( double d ) : double

Returns the angle whose hyperbolic sine is the specified number.

Atanh ( double d ) : double

Returns the angle whose hyperbolic tangent is the specified number.

Cot ( double d ) : double

Returns the cotangent of the specified angle.

Coth ( double d ) : double

Returns the hyperbolic cotangent of the specified angle.

Csc ( double d ) : double

Returns the cosecant of the specified angle.

Csch ( double d ) : double

Returns the hyperbolic cosecant of the specified angle.

Fact ( double n ) : double

Computes the factorial.

GCD ( ) : double

Computes the polynomial greatest common divisor.

GCD ( double a, double b ) : double

Computes the greatest common divisor.

LCM ( ) : double

Computes the polynomial least common multiple.

LCM ( double a, double b ) : double

Computes the least common multiple.

Pow ( double number, double power ) : double

Returns a specified number raised to the specified power.

Sec ( double d ) : double

Returns the secant of the specified angle.

Sech ( double d ) : double

Returns the hyperbolic secant of the specified angle.

ToNewBase ( int number, NumeralSystem numeralSystem ) : string

Converts number to the new numeral system.

메소드 상세

Acosh() 공개 정적인 메소드

Returns the angle whose hyperbolic cosine is the specified number.
public static Acosh ( double d ) : double
d double A number representing a hyperbolic cosine.
리턴 double

Acot() 공개 정적인 메소드

Returns the angle whose cotangent is the specified number.
public static Acot ( double d ) : double
d double A number representing a cotangent.
리턴 double

Acoth() 공개 정적인 메소드

Returns the angle whose hyperbolic cotangent is the specified number.
public static Acoth ( double d ) : double
d double A number representing a hyperbolic cotangent.
리턴 double

Acsc() 공개 정적인 메소드

Returns the angle whose cosecant is the specified number.
public static Acsc ( double d ) : double
d double A number representing a hyperbolic cosecant.
리턴 double

Acsch() 공개 정적인 메소드

Returns the angle whose hyperbolic cosecant is the specified number.
public static Acsch ( double d ) : double
d double A number representing a hyperbolic cosecant.
리턴 double

Asec() 공개 정적인 메소드

Returns the angle whose secant is the specified number.
public static Asec ( double d ) : double
d double A number representing a secant.
리턴 double

Asech() 공개 정적인 메소드

Returns the angle whose hyperbolic secant is the specified number.
public static Asech ( double d ) : double
d double A number representing a hyperbolic secant.
리턴 double

Asinh() 공개 정적인 메소드

Returns the angle whose hyperbolic sine is the specified number.
public static Asinh ( double d ) : double
d double A number representing a hyperbolic sine.
리턴 double

Atanh() 공개 정적인 메소드

Returns the angle whose hyperbolic tangent is the specified number.
public static Atanh ( double d ) : double
d double A number representing a hyperbolic tangent.
리턴 double

Cot() 공개 정적인 메소드

Returns the cotangent of the specified angle.
public static Cot ( double d ) : double
d double An angle, measured in radians.
리턴 double

Coth() 공개 정적인 메소드

Returns the hyperbolic cotangent of the specified angle.
public static Coth ( double d ) : double
d double An angle, measured in radians.
리턴 double

Csc() 공개 정적인 메소드

Returns the cosecant of the specified angle.
public static Csc ( double d ) : double
d double An angle, measured in radians.
리턴 double

Csch() 공개 정적인 메소드

Returns the hyperbolic cosecant of the specified angle.
public static Csch ( double d ) : double
d double An angle, measured in radians.
리턴 double

Fact() 공개 정적인 메소드

Computes the factorial.
public static Fact ( double n ) : double
n double An argument.
리턴 double

GCD() 공개 정적인 메소드

Computes the polynomial greatest common divisor.
is null.
public static GCD ( ) : double
리턴 double

GCD() 공개 정적인 메소드

Computes the greatest common divisor.
public static GCD ( double a, double b ) : double
a double
b double
리턴 double

LCM() 공개 정적인 메소드

Computes the polynomial least common multiple.
is null.
public static LCM ( ) : double
리턴 double

LCM() 공개 정적인 메소드

Computes the least common multiple.
public static LCM ( double a, double b ) : double
a double
b double
리턴 double

Pow() 공개 정적인 메소드

Returns a specified number raised to the specified power.
public static Pow ( double number, double power ) : double
number double A double-precision floating-point number to be raised to a power.
power double A double-precision floating-point number that specifies a power.
리턴 double

Sec() 공개 정적인 메소드

Returns the secant of the specified angle.
public static Sec ( double d ) : double
d double An angle, measured in radians.
리턴 double

Sech() 공개 정적인 메소드

Returns the hyperbolic secant of the specified angle.
public static Sech ( double d ) : double
d double An angle, measured in radians.
리턴 double

ToNewBase() 공개 정적인 메소드

Converts number to the new numeral system.
public static ToNewBase ( int number, NumeralSystem numeralSystem ) : string
number int The number.
numeralSystem NumeralSystem The numeral system.
리턴 string