Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
November 8, 2022 11:03 pm GMT

SPVM::Math - Python/numpy porting to Perl

SPVM::Math provides math functions.

use Math;my $sin = Math->sin(Math->PI / 4);

This will be used in the Python/numpy porting to Perl like the following.

my $np = Numpy->new;$np->sin($x);

What Is SPVM?

SPVM is a static typed language that can be used from Perl. SPVM is the essential part of the Python/numpy porting to Perl. If you haven't heard of Perl's SPVM, Please see also SPVM Language Specification.

This project really needs contributors

This project really needs contributors. I am looking for contributors.


Original Link: https://dev.to/yukikimoto/spvmmath-pythonnumpy-porting-to-perl-26ng

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To