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

Changelog

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

  [ Salvatore Bonaccorso ]
  * debian/control: Use HTTPS transport protocol for Vcs-Git URI

  [ gregor herrmann ]
  * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
  * Remove Shen Wei from Uploaders. Thanks for your work!

  [ Alex Muntada ]
  * Remove inactive pkg-perl members from Uploaders.

  [ gregor herrmann ]
  * New upstream release.
  * Update years of upstream copyright.
  * Drop debian/README.source.
  * Declare compliance with Debian Policy 4.1.3.
  * Bump debhelper compatibility level to 10.
  * Add /me to Uploaders.

 -- gregor herrmann <email address hidden>  Tue, 02 Jan 2018 23:24:19 +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
Jammy release universe perl
Focal release universe perl
Bionic release universe perl

Builds

Bionic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libmath-vector-real-perl_0.18-1.dsc 2.2 KiB 580e6cb48b7e5ae76f19f3bbdeeaa92e3f52cd7f121d6f1296d5821410049803
libmath-vector-real-perl_0.18.orig.tar.gz 12.5 KiB b24d1907e60619300db24af21c6ee95327c51d9f75c5a0c3921d6ed64e3e54fa
libmath-vector-real-perl_0.18-1.debian.tar.xz 2.3 KiB aff02ce51c3a193e1e327d6afba3fea73bfcf4695821db9866211f1ea850906b

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.