Section courante

A propos

Section administrative du site

RADIANS

Radians
MySQL  

Syntaxe

Radians(Nombre)

Paramètres

Nom Description
Nombre Ce paramètre permet d'indiquer le degrées à convertir

Description

Cette fonction retourne la valeur radians d'un nombre en degrées.

Exemple

Voici un exemple d'une utilisation typique de cette fonction :

  1. SELECT "Radians(0) = " As Text,  Radians(0) UNION
  2. SELECT "Radians(45) = " As Text,  Radians(45) UNION
  3. SELECT "Radians(90) = " As Text,  Radians(90) UNION
  4. SELECT "Radians(180) = " As Text,  Radians(180) UNION
  5. SELECT "Radians(270) = " As Text,  Radians(270) UNION
  6. SELECT "Radians(360) = " As Text,  Radians(360)

on obtiendra le résultat suivant :

Text Result
Radians(0) = 0
Radians(45) = 0.785398163397448
Radians(90) = 1.5707963267949
Radians(180) = 3.14159265358979
Radians(270) = 4.71238898038469
Radians(360) = 6.28318530717959

Voir également

Article - Les géants de l'informatique - Oracle

Références

MySQL - Référence, Edition Micro Application, Nicolas Rivereau, Antoine Pichot, 2002, ISBN: 2-7429-2560-0, page 928.
MySQL: The definitive guide to using, programming, and administering MySQL 4 databases - Second Edition, Paul Dubois, 2003, ISBN: 0-7357-1212-3, page 806

Dernière mise à jour : Mercredi, le 29 avril 2015