http://www.perlmonks.org?node_id=1015502


in reply to How to use rad2rad

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,

Replies are listed 'Best First'.
Re^2: How to use rad2rad
by Masayoshi Fujimoto (Initiate) on Jan 26, 2013 at 16:19 UTC
    Good example. Thank you very much.