Bagikan melalui


Fungsi Matematika Turunan (Visual Basic)

Tabel berikut menunjukkan fungsi matematika non-intrinsik yang dapat berasal dari fungsi matematika intrinsik objek System.Math. Anda dapat mengakses fungsi matematika intrinsik dengan menambahkan Imports System.Math ke file atau proyek Anda.

Function Persamaan turunan
Sekan (Sec(x)) 1 / Cos(x)
Kosekan (Csc(x)) 1 / Sin(x)
Kotangen (Ctan(x)) 1 / Tan(x)
Sinus terbalik (Asin(x)) Atan(x / Sqrt(-x * x + 1))
Kosinus terbalik (Acos(x)) Atan(-x / Sqrt(-x * x + 1)) + 2 * Atan(1)
Sekan terbalik (Asec(x)) 2 * Atan(1) – Atan(Sign(x) / Sqrt(x * x – 1))
Kosekan terbalik (Acsc(x)) Atan(Sign(x) / Sqrt(x * x – 1))
Kotangen terbalik (Acot(x)) 2 * Atan(1) - Atan(x)
Sinus hiperbolik (Sinh(x)) (Exp(x) – Exp(-x)) / 2
Kosinus hiperbolik (Cosh(x)) (Exp(x) + Exp(-x)) / 2
Tangen hiperbolik (Tanh(x)) (Exp(x) + Exp(-x)) / (Exp(x) – Exp(-x))
Sekan hiperbolik (Sech(x)) 2 / (Exp(x) + Exp(-x))
Kosekan hiperbolik (Csch(x)) 2 / (Exp(x) – Exp(-x))
Kotangen hiperbolik (Coth(x)) (Exp(x) + Exp(-x)) / (Exp(x) – Exp(-x))
Sinus hiperbolik terbalik (Asinh(x)) Log(x + Sqrt(x * x + 1))
Kosinus hiperbolik terbalik (Acosh(x)) Log(x + Sqrt(x * x – 1))
Tangen hiperbolik terbalik (Atanh(x)) Log((1 + x) / (1 – x)) / 2
Sekan hiperbolik terbalik (AsecH(x)) Log((Sqrt(-x * x + 1) + 1) / x)
Kosekan hiperbolik terbalik (Acsch(x)) Log((Sign(x) * Sqrt(x * x + 1) + 1) / x)
Kotangen hiperbolik terbalik (Acoth(x)) Log((x + 1) / (x – 1)) / 2

Lihat juga