Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

How to use rad2rad

by Masayoshi Fujimoto (Initiate)
on Jan 26, 2013 at 15:33 UTC ( [id://1015501]=perlquestion: print w/replies, xml ) Need Help??

Masayoshi Fujimoto has asked for the wisdom of the Perl Monks concerning the following question:

Could you tell me very easy simple example how to use rad2rad function? Here is my perl programme. I got the following message:
Undefined subroutine &main::rad2rad called at sample.pl line 8.
#!/usr/bin/perl use Modern::Perl; use autodie; use Math::Trig; use Math::Trig ':pi'; my $radians; my $radians_wrapped_by_2pi = rad2rad($radians);

Replies are listed 'Best First'.
Re: How to use rad2rad
by Athanasius (Archbishop) on Jan 26, 2013 at 15:40 UTC

    Hello Masayoshi Fujimoto, and welcome to the Monastery!

    The function rad2rad is not exported by the Math::Trig module, so to use it you need to put the full module name in front:

    my $radians_wrapped_by_2pi = Math::Trig::rad2rad($radians);

    Update: Here is an example of rad2rad() in use:

    use Modern::Perl; use Math::Trig ':pi'; my $radians = 4.5 * pi; my $radians_wrapped_by_2pi = Math::Trig::rad2rad($radians); say 'rad2rad(', $radians, ') = ', $radians_wrapped_by_2pi;

    Output:

    1:49 >perl 502_SoPW.pl rad2rad(14.1371669411541) = 1.5707963267949 1:49 >

    Hope that helps,

    Athanasius <°(((><contra mundum Iustus alius egestas vitae, eros Piratica,

      Good example. Thank you very much.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://1015501]
Approved by Athanasius
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (8)
As of 2024-04-23 17:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found