Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ndarray-segment

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

ndarray-segment

Run length encoded sparse ndarray

  • 0.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

ndarray-segment

ndarrays with run length encoded data storage.

Example

var ndseg = require("ndarray-segment")
var ops = require("ndarray-ops")

//Create a 100x100 segment array
var x = ndseg([100, 100])

//Fill in a block with a constant value
ops.assigns(x.hi(50,50).lo(30, 20), 1)

Install

npm install ndarray-segment

API

var ndseg = require("ndarray-segment")

Constructor

The default ndseg function supports several different conventions for usage:

ndseg(shape)

Creates a sparse ndarray with the given shape initialized to 0

  • shape is the shape of the ndarray

Returns A new ndarray with the given shape

ndseg(array)

Converts the given ndarray into a sparse segment tree

  • array is an ndarray

Returns A sparse ndarray representing the same data as array

ndseg(data, shape)

Creates an ndarray from the given data store and shape

  • data is a 1D array
  • shape is the shape of the ndarray to construct from it

Returns A sparse ndarray encoding of data

Credits

(c) 2013 Mikola Lysenko. MIT License

Keywords

FAQs

Package last updated on 27 Jun 2013

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc