Aracılığıyla paylaş


Türetilen Matematik İşlevleri (Visual Basic)

Aşağıdaki tabloda, nesnenin iç matematik işlevlerinden türetilebilen içsel olmayan matematik işlevleri gösterilmektedir System.Math . Dosyanıza veya projenize ekleyerek Imports System.Math iç matematik işlevlerine erişebilirsiniz.

İşlev Türetilmiş eşdeğerler
Secant (Sn(x)) 1 / Cos(x)
Kosekant (Csc(x)) 1 / Sin(x)
Kotanjant (Ctan(x)) 1 / Tan(x)
Ters sinüs (Asin(x)) Atan(x / Karekök(-x * x + 1))
Ters kosinüsü (Acos(x)) Atan(-x / Sqrt(-x * x + 1)) + 2 * Atan(1)
Ters sekant (Asec(x)) 2 * Atan(1) – Atan(Sign(x) / Sqrt(x * x – 1))
Ters kosekant (Acsc(x)) Atan(Sign(x) / Sqrt(x * x – 1))
Ters kotanjant (Acot(x)) 2 * Atan(1) - Atan(x)
Hiperbolik sinüs (Sinh(x)) (İfade(x) – İfade(-x)) / 2
Hiperbolik kosinüsü (Cosh(x)) (Exp(x) + Exp(-x)) / 2
Hiperbolik tanjant (Tanh(x)) (İfade(x) – İfade(-x)) / (İfade(x) + İfade(-x))
Hiperbolik sekant (Sech(x)) 2 / (Exp(x) + Exp(-x))
Hiperbolik kosekant (Csch(x)) 2 / (İfade(x) – İfade(-x))
Hiperbolik kotanjant (Coth(x)) (Exp(x) + Exp(-x)) / (Exp(x) – Exp(-x))
Ters hiperbolik sinüs (Asinh(x)) Log(x + Karekök(x * x + 1))
Ters hiperbolik kosinüsü (Acosh(x)) Log(x + Karekök(x * x – 1))
Ters hiperbolik tanjant (Atanh(x)) Log((1 + x) / (1 – x)) / 2
Ters hiperbolik sekant (AsecH(x)) Log((Sqrt(-x * x + 1) + 1) / x)
Ters hiperbolik kosekant (Acsch(x)) Log((Sign(x) * Sqrt(x * x + 1) + 1) / x)
Ters hiperbolik kotanjant (Acoth(x)) Log((x + 1) / (x – 1)) / 2

Ayrıca bkz.