You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

affine-complement

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

affine-complement

Finds a basis for the affine complement of a set of points

1.0.0
latest
Source
npmnpm
Version published
Weekly downloads
1.4K
-1.79%
Maintainers
1
Weekly downloads
 
Created
Source

affine-complement

Given a tuple of at most (d+1) points in d-dimensional affine space, find a basis for the affine complement of the point set.

Example

var points = [ [1, 0, 0], [0, 1, 0] ]
var copoints = require('affine-complement')(3, points)

console.log(copoints)

Install

npm install affine-complement

API

var co = require('affine-complement')(d, points)

Finds a basis for the affine complement of points

  • d is the dimension of the ambient space
  • points is an array of points in d dimensional affine space

Returns An array of (d+1-points.length) points which when combined with points spans d-dimensional affine space. If no such points exist, then returns null.

Note These points are selected deterministically

Credits

(c) 2014 Mikola Lysenko. MIT License

Keywords

affine

FAQs

Package last updated on 07 Dec 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts