Cari di Perl 
    Perl User Manual
Daftar Isi
(Sebelumnya) Retrieve the next pseudorandom ...Square root function (Berikutnya)
Numeric functions

Return the sine of a number

Daftar Isi

  • sin EXPR

  • sin

    Returns the sine of EXPR (expressed in radians). If EXPR is omitted,returns sine of $_.

    For the inverse sine operation, you may use the Math::Trig::asinfunction, or use this relation:

    1. sub asin { atan2($_[0], sqrt(1 - $_[0] * $_[0])) }
 
Source : perldoc.perl.org - Official documentation for the Perl programming language
Site maintained by Jon Allen (JJ)     See the project page for more details
Documentation maintained by the Perl 5 Porters
(Sebelumnya) Retrieve the next pseudorandom ...Square root function (Berikutnya)