Atan - metoda objektu Pm
Popis:
Vrací arcustangens (inverzni tangens) čísla.
Syntaxe:
Double Atan(Double nValue)
Parametry:
nValue | (Double) Jakýkoli platný číselný výraz. |
---|
Vrácená hodnota:
Reálné číslo v rozsahu od -Pi/2 do +Pi/2.
Příklad1:
JavaScriptVBScriptVyber a zkopíruj do schránky
var pi = 4 * Pm.Atan(1);
// Vypočet hodnoty Pi
Dim pi
pi = 4 * Pm.Atan(1)
' Vypočet hodnoty Pi
Příklad2:
Výpočet odvozených arcus funkcí
JavaScriptVBScriptVyber a zkopíruj do schránky
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)