ACOS/de
(→Anmerkungen) |
(→Anmerkungen) |
||
Line 23: | Line 23: | ||
| valign="top" width="100%" style="width: 480px; border: 1px solid rgb(0, 0, 0);" | | | valign="top" width="100%" style="width: 480px; border: 1px solid rgb(0, 0, 0);" | | ||
− | |||
Eine Gleitkomma-Variable (Single/Double),der der ACOS der Variablen x zugewiesen wird. | Eine Gleitkomma-Variable (Single/Double),der der ACOS der Variablen x zugewiesen wird. | ||
|- style="vertical-align: top;" | |- style="vertical-align: top;" | ||
Line 30: | Line 29: | ||
| valign="top" width="100%" style="width: 480px; border: 1px solid rgb(0, 0, 0);" | | | valign="top" width="100%" style="width: 480px; border: 1px solid rgb(0, 0, 0);" | | ||
− | + | Der Gleitkommawert von dem der ACOS berechnet wird. | |
− | + | Gültiger Wertebereich ist –1 bis +1, Rückgabe p bis 0. | |
− | p | + | |
<span style="font-family: Arial;"> </span> | <span style="font-family: Arial;"> </span> |
Revision as of 12:13, 6 March 2013
Contents |
Funktion
Gibt den Arkuskosinus eines Singles im Bogenmaß zurück.
Syntax
var = ACOS( x )
Anmerkungen
Var |
Eine Gleitkomma-Variable (Single/Double),der der ACOS der Variablen x zugewiesen wird. |
X |
Der Gleitkommawert von dem der ACOS berechnet wird. Gültiger Wertebereich ist –1 bis +1, Rückgabe p bis 0.
If Input is < -1 than p and input is > 1 than 0 will returned. |
If Input is cause of rounding effect in float-operations a little bit over 1 or -1, the value for 1.0 (-1.0) will be returned. This is the reason to give the value of the limit-point back, if Input is beyond limit. Generally the user have to take care, that Input to this function lies within –1 to +1.
All trig functions work with radians. Use deg2rad and rad2deg to convert between radians and angles.
See Also
RAD2DEG , DEG2RAD , COS , SIN , TAN , ATN , ASIN , ATN2
Example
$regfile = "m48def.dat" ' specify the used micro $crystal = 8000000 ' used crystal frequency $baud = 19200 ' use baud rate $hwstack = 32 ' default use 32 for the hardware stack $swstack = 10 ' default use 10 for the SW stack $framesize = 40 ' default use 40 for the frame space Config Com1 = Dummy , Synchrone = 0 , Parity = None , Stopbits = 1 , Databits = 8 , Clockpol = 0 Dim S As Single , X As Single x= 0.5 : S = Acos(x) Print S End
Languages | English • Deutsch |
---|