Math::MatrixReal 2.03 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Math::MatrixReal 2.03 (Default branch)
# 1  
Old 01-27-2008
Math::MatrixReal 2.03 (Default branch)

Math::MatrixReal is a Perl module for manipulating NxM real matrices. Some of the notable features are operator overloading, LR decomposition, eigenvalue/eigenvector algorithms for symmetric matrices, and export to Matlab/LaTeX/Yacas formats. License: Perl License Changes:
This release uses Module::Build, so Math::MatrixReal should in theory be able to compile on systems without make. A new concatenation operator ".", e.g. $c = $a . $b, concatenates two matrices side-by-side. The function assign_row has been added. The beginning of a test suite overhaul to convert to Test::More.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Math

i have file (my_file.txt) that looks like this: 000000000000010000 000000000000010000 000000000000005000 000000000000005000 000000000000005000 000000000000005000 000000000000005000 000000000000005000 000000000000005000 000000000000005000 all said and one, it should look... (11 Replies)
Discussion started by: lawsongeek
11 Replies

2. Shell Programming and Scripting

math help

$ x=1 $ y=1.5 $ z=$((x*y)) bash: 1.5: syntax error: invalid arithmetic operator (error token is ".5") What's wrong? (2 Replies)
Discussion started by: rockbike
2 Replies

3. Programming

something about <math.h>

Hi, I got an easy problem for you but really difficult for me 'cause I am pretty new to this field I got header file <math.h> included in my .c file , then I write the code as below: k = sqrt(i); /* both variables k and i are int */ then I cc temp.c it says like this undefined... (4 Replies)
Discussion started by: blf0
4 Replies
Login or Register to Ask a Question
Template::Plugin::Math(3)				User Contributed Perl Documentation				 Template::Plugin::Math(3)

NAME
Template::Plugin::Math - Plugin providing mathematical functions SYNOPSIS
[% USE Math %] [% Math.sqrt(9) %] DESCRIPTION
The Math plugin provides numerous mathematical functions for use within templates. METHODS
"Template::Plugin::Math" makes available the following functions from the Perl core: abs atan2 cos exp hex int log oct rand sin sqrt srand In addition, if the Math::Trig module can be loaded, the following functions are also available: pi tan csc cosec sec cot cotan asin acos atan acsc acosec asec acot acotan sinh cosh tanh csch cosech sech coth cotanh asinh acosh atanh acsch acosech asech acoth acotanh rad2deg rad2grad deg2rad deg2grad grad2rad grad2deg If the Math::TrulyRandom module is available, and you've got the time to wait, the "truly_random_number" method is available: [% Math.truly_random_number %] AUTHOR
Andy Wardley <abw@wardley.org> <http://wardley.org/> COPYRIGHT
Copyright (C) 1996-2007 Andy Wardley. All Rights Reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
Template::Plugin perl v5.12.1 2008-11-13 Template::Plugin::Math(3)