Atan - metoda obiektu Pm
Opis:
Zwraca arcustangens (funkcja odwrotna do tangens) liczby.
Składnia:
Double Atan(Double nValue)
Parametry:
nValue | (Double) Dowolne ważne wyrażenie liczbowe. |
---|
Wartość zwrotna:
Liczba rzeczywista w zakresie od -Pi/2 do +Pi/2.
Przykład1:
JavaScriptVBScriptWybierz oraz skopiuj do schowka
var pi = 4 * Pm.Atan(1);
// Obliczenie wartości Pi
Dim pi
pi = 4 * Pm.Atan(1)
' Obliczenie wartości Pi
Przykład2:
Obliczenie pochodnych funkcji arcus
JavaScriptVBScriptWybierz oraz skopiuj do schowka
var Arcsin = Pm.Atan(x / Pm.Sqrt(-x * x + 1));
var Arccos = Pm.Atan(-x / Pm.Sqrt(-x * x + 1)) + 2 * Pm.Atan(1);
var Arcsec = Pm.Atan(x / Pm.Sqrt(x * x - 1)) + Pm.Sign(x - 1) * 2 * Pm.Atan(1);
var Arccosec = Pm.Atan(x / Pm.Sqrt(x * x - 1)) + (Pm.Sign(x) - 1) * 2 * Pm.Atan(1);
var Arccotan = Pm.Atan(x) + 2 * Pm.Atan(1);
Dim Arcsin, Arccos, Arcsec, Arccosec, Arccotan
Arcsin = Pm.Atan(x / Pm.Sqrt(-x * x + 1))
Arccos = Pm.Atan(-x / Pm.Sqrt(-x * x + 1)) + 2 * Pm.Atan(1)
Arcsec = Pm.Atan(x / Pm.Sqrt(x * x - 1)) + Pm.Sign(x - 1) * 2 * Pm.Atan(1)
Arccosec = Pm.Atan(x / Pm.Sqrt(x * x - 1)) + (Pm.Sign(x) - 1) * 2 * Pm.Atan(1)
Arccotan = Pm.Atan(x) + 2 * Pm.Atan(1)