Original (English)Arc functions - the opposite of the sin, cos, tan function, return an angle for a given value. atan2 is used for higher precision when a is a sine and b a cosine. Parameters:x - any var. a, b - any var; the tangent value is a/b. Returns:Angle in radians. Example:x = asin(1); // x is pi/2 x = asin(0.707); // x is pi/4 See also:Trigonometry, sin, cos, tan |
Übersetzung (Deutsch)Arkussinus-, Arkuskosinus- und Arkustangens-Funktionen - die Umkehrfunktionen von sin, cos, tan - geben einen Winkel für einen gegebenen Wert zurück. atan2 wird für höhere Genauigkeit verwendet, wenn a ein Sinus und b ein Kosinus ist. Parameter:x - ein beliebiger var. a, b - beliebige var; der Tangenswert ist a/b. Rückgabe:Winkel in Radiant. Beispiel:x = asin(1); // x ist pi/2 x = asin(0.707); // x ist pi/4 Siehe auch:Trigonometrie, sin, cos, tan |