Leser: 2
|< 1 2 >| | 17 Einträge, 2 Seiten |
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl
use warnings;
use DBI;
use Math::Trig qw(tan sec csc cot asin acos atan asec acsc acot sinh cosh tanh sech csch coth asinh acosh atanh asech acsch acoth);
use Math::MatrixReal;
package FRAG_LIB;
sub RadToDegree()
{
return (($_[0] * 180)/ Math::Trig->pi());
}
use functionsAndConstants;
use "functionsAndConstants.pm";
1
2
3
4
5
6
7
#!/usr/bin/perl -w
sub Modulprint {
print "Hier meldet sich das Modul \"Modul.pm\"\n";
}
1;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use warnings;
use DBI;
use Math::Trig qw(tan sec csc cot asin acos atan asec acsc acot sinh cosh tanh sech csch coth asinh acosh atanh asech acsch acoth);
use Math::MatrixReal;
package FRAG_LIB;
use Exporter;
our @ISA = qw(Exporter);
our @EXPORT = qw(RadToDegree);
our @EXPORT_OK = qw();
sub RadToDegree()
{
return (($_[0] * 180)/ Math::Trig->pi());
}
*RadToDegree = \&FRAG_LIB::RadToDegree;
Quote
Quote
Was spricht eigentlich dagegen die sub rad2deg von Math::Trig zu verwenden?
use STUFF.pm
shift @_;
|< 1 2 >| | 17 Einträge, 2 Seiten |