Esta función se utiliza para calcular la arcotangente de Y/X en el rango -PI a PI.
Sintaxis: atan2(Y, X)
Parámetros:
Y y X que son valores del ejeDevoluciones: la función devuelve la arcotangente de Y/X en el rango -PI a PI.
Ejemplo 1:
#!/usr/bin/perl # Assigning values to X and y $Y = 45; $X = 70; # Calling atan2() function $return_val = atan2($Y, $X); # printing the value print "atan2 of 45/70 is : $return_val\n";
Producción:
atan2 of 45/70 is : 0.571337479833627
Ejemplo2:
#!/usr/bin/perl # Assigning values to X and y $Y = -30; $X = 40; # Calling atan2() function $return_val = atan2($Y, $X); # printing the value print "atan2 of -30/40 is : $return_val\n";
Producción:
atan2 of -30/40 is : -0.643501108793284
Publicación traducida automáticamente
Artículo escrito por Akanksha_Rai y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA