PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

rand> <pow
Last updated: Fri, 18 Jul 2008

view this page in

rad2deg

(PHP 4, PHP 5)

rad2deg — Converte un numero in radianti nell'equivalente numero in gradi

Descrizione

double rad2deg ( double $numero )

Questa funzione converte numero da radianti a gradi.

Example #1 Esempio per rad2deg()

<?php
 
echo rad2deg(M_PI_4); // 45
 
?>

Vedere anche deg2rad().



add a note add a note User Contributed Notes
rad2deg
money1109 at gmail dot com
15-May-2008 03:59
Conversion between grads and degrees

function gon2deg($gon) {
    return ($gon / 400) * 360;
}

function deg2gon($deg) {
    return ($deg / 360) * 400;
}
15-Dec-2004 10:22
Definition

<?
function rad2deg($arg) {
 return $arg*180/pi();
}
?>

rand> <pow
Last updated: Fri, 18 Jul 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites