libmath-vector-real-perl 0.18-2 source package in Ubuntu

Changelog

libmath-vector-real-perl (0.18-2) unstable; urgency=medium

  [ Salvatore Bonaccorso ]
  * Update Vcs-* headers for switch to salsa.debian.org

  [ Debian Janitor ]
  * Bump debhelper from old 10 to 12.
  * Set debhelper-compat version in Build-Depends.

  [ gregor herrmann ]
  * debian/watch: use uscan version 4.

 -- Jelmer Vernooij <email address hidden>  Wed, 15 Jun 2022 19:16:46 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libmath-vector-real-perl_0.18-2.dsc 2.1 KiB 16e58a4ff27608c261ecb10c91b31340c0d16c07df0376944532c6ceedb7afe9
libmath-vector-real-perl_0.18.orig.tar.gz 12.5 KiB b24d1907e60619300db24af21c6ee95327c51d9f75c5a0c3921d6ed64e3e54fa
libmath-vector-real-perl_0.18-2.debian.tar.xz 2.4 KiB c0990c283d58de2105c8a6ccd043d1c8291d0dd542d935eef478bada787a939a

Available diffs

No changes file available.

Binary packages built by this source

libmath-vector-real-perl: Perl module for real number vector arithmetic

 Math::Vector::Real is a pure Perl module to manipulate vectors of
 any dimension.
 .
 The function V, always exported by the module, allows one to create new
 vectors:
 .
 $v = V(0, 1, 3, -1);
 .
 Vectors are represented as blessed array references. It is allowed to
 manipulate the arrays directly as far as only real numbers are inserted
 (well, actually, integers are also allowed because from a mathematical point
 of view, integers are a subset of the real numbers).
 .
 Vectors can be used in mathematical expressions, the currently supported
 operations are:
 .
  . + * /
  . - (both unary and binary)
  . x (cross product for 3D vectors)
  . += -= *= /= x=
  . == !=
  . "" (stringfication)
  . abs (returns the norm)
  . atan2 (returns the angle between two vectors)
 .
 When an array reference is used in an operation involving a vector, it is
 automatically upgraded to a vector.