MathNLogTNumeric(TNumeric, TNumeric) Method

Returns the logarithm of a specified number in a specified base.

Definition

Namespace: Jodosoft.Numerics
Assembly: Jodosoft.Numerics (in Jodosoft.Numerics.dll) Version: 2.0
public static TNumeric Log<TNumeric>(
	TNumeric x,
	TNumeric y
)
where TNumeric : struct, new(), INumeric<TNumeric>

Parameters

x  TNumeric
 
y  TNumeric
 

Type Parameters

TNumeric

Return Value

TNumeric
log newBase(a)

Remarks

This method may return NaN or Infinity. If NaN or Infinity cannot be represented by TNumeric, then this method may throw an ArithmeticException.

See Also