Türetilen Matematik İşlevleri (Visual Basic)

Aşağıdaki tabloda gerçek math işlevlerden türetilen içsel matematik fonksiyonları gösterir Math nesne.İç matematik işlevleri ekleyerek erişebilirsiniz Imports System.Math dosyası veya proje.

İşlev

Türetilmiş eşdeğerleri

Sekantı (Sec(x))

1 / Cos(x)

Kosekantı (Csc(x))

1 / Sin(x)

Kotanjantı (Ctan(x))

1 / Tan(x)

Ters sinüsü (Asin(x))

Atan(x / Sqrt(-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))

(Exp(x) – Exp(-x)) / 2

Hiperbolik kosinüsü (Cosh(x))

(Exp(x) + Exp(-x)) / 2

Hiperbolik tanjantı (Tanh(x))

(Exp(x) – Exp(-x)) / (Exp(x) + Exp(-x))

Hiperbolik sekantı (Sech(x))

2 / (Exp(x) + Exp(-x))

Hiperbolik kosekantı (Csch(x))

2 / (Exp(x) – Exp(-x))

Hiperbolik kotanjantı (Coth(x))

(Exp(x) + Exp(-x)) / (Exp(x) – Exp(-x))

Ters hiperbolik sinüsü (Asinh(x))

Log(x + Sqrt(x * x + 1))

Ters hiperbolik kosinüsü (Acosh(x))

Log(x + Sqrt(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.

Başvuru

Matematik İşlevleri (Visual Basic)