PHP Doku:: Kosinus - function.cos.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzMathematische ErweiterungenMathematische FunktionenMathematische Funktionencos

Ein Service von Reinhard Neidl - Webprogrammierung.

Mathematische Funktionen

<<ceil

cosh>>

cos

(PHP 4, PHP 5)

cosKosinus

Beschreibung

float cos ( float $arg )

cos() berechnet den Kosinus des Winkels arg.

Parameter-Liste

arg

Ein Winkel in Bogenmaß

Rückgabewerte

Der Kosinus des Winkels arg

Beispiele

Beispiel #1 cos() Beispiel

<?php

echo cos(M_PI); // -1

?>

Siehe auch


3 BenutzerBeiträge:
- Beiträge aktualisieren...
bruha at las wegos dot net
10.08.2008 4:45
Another way to figure out a triangle (more efficient)

<?php
$a
= 10; // a
$b = 15; // b

$angle = 45// angle opposite side c

$c = (sqrt(pow($a, 2) + pow($b, 2) - $a * $b * cos(deg2rad($angle)) * 2));

// side c = 10.613894770933
?>

yes im good arent i?
joescuriosityshoppe at gmail dot com
13.10.2006 11:55
Find the side of a triangle using two sides and an angle:
<?
$a
= "10"; // length of side a
$b = "15"; // length of side b
$angle = "45"// angle opposite side c

$c = (sqrt(pow($a, 2) + pow($b, 2) - $a * $b * cos(deg2rad($angle)) * 2));

// side c = 10.613894770933
?>
felipensp at gmail dot com
12.03.2006 14:29
Convert degree to radianus, radianus to cos.

<?php

   
// Degree
   
$degree = 360;

   
// Convertion
   
print cos(deg2rad($degree));

?>



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)