Socket
Socket
Sign inDemoInstall

dot-product-ndarray

Package Overview
Dependencies
53
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    dot-product-ndarray

Returns dot product of two 2D ndarrays


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Install size
6.67 MB
Created
Weekly downloads
 

Readme

Source

dot-product-ndarray

Build Status Given two 2D ndarrays, returns a 2D ndarray that is a dot product of the two.

Usage

var dotProduct = require('dot-product-ndarray');

var left = ndarray( [1,2,3,4,5,6], [3,2], [2,1] );
var right = ndarray( [1,2,3,4,5,6], [2,3], [3,1] );

dotProduct(left, right, function(err, data) {
  // do something with returned data
});

Limitations

2D only.

Keywords

FAQs

Last updated on 02 Nov 2015

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc