1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00

Add rubygem-matrix 0.3.0

Matrix is an implementation of Matrix and Vector classes.

The Matrix class represents a mathematical matrix. It provides methods for
creating matrices, operating on them arithmetically and algebraically, and
determining their mathematical properties (trace, rank, inverse, determinant,
eigensystem, etc.).

The Vector class represents a mathematical vector, which is useful in its own
right, and also constitutes a row or column of a Matrix.

WWW: https://github.com/ruby/matrix
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2020-05-16 10:50:02 +00:00
parent 2f210f113e
commit 710eb39081
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=535386
4 changed files with 35 additions and 0 deletions

View File

@ -864,6 +864,7 @@
SUBDIR += rubygem-expression_parser SUBDIR += rubygem-expression_parser
SUBDIR += rubygem-fftw3 SUBDIR += rubygem-fftw3
SUBDIR += rubygem-mathn SUBDIR += rubygem-mathn
SUBDIR += rubygem-matrix
SUBDIR += rubygem-mtrc SUBDIR += rubygem-mtrc
SUBDIR += rubygem-narray SUBDIR += rubygem-narray
SUBDIR += rubygem-narray_miss SUBDIR += rubygem-narray_miss

View File

@ -0,0 +1,20 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
# $FreeBSD$
PORTNAME= matrix
PORTVERSION= 0.3.0
CATEGORIES= math rubygems
MASTER_SITES= RG
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Implementation of Matrix and Vector classes
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
USES= gem
USE_RUBY= yes
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1588336471
SHA256 (rubygem/matrix-0.3.0.gem) = 3df4ddb8c5ef22bb4e883dbbbd860eec309788297df29a825734e8e52ad729a0
SIZE (rubygem/matrix-0.3.0.gem) = 28160

View File

@ -0,0 +1,11 @@
Matrix is an implementation of Matrix and Vector classes.
The Matrix class represents a mathematical matrix. It provides methods for
creating matrices, operating on them arithmetically and algebraically, and
determining their mathematical properties (trace, rank, inverse, determinant,
eigensystem, etc.).
The Vector class represents a mathematical vector, which is useful in its own
right, and also constitutes a row or column of a Matrix.
WWW: https://github.com/ruby/matrix