| « Earlier | 2 items total | Later » |
Call Matlab From Perl
CPAN, the perl module supersite contains a module called Math::MatlabIf MyMatlab is a sub-class of Math::Matlab ...
use MyMatlab; $matlab = MyMatlab->new( { %args } ); my $code = q/fprintf( 'Hello world!\n' );/ if ( $matlab->execute($code) ) { print $matlab->fetch_result; } else { print $matlab->err_msg; }
| « Earlier | 2 items total | Later » |