
Research
Security News
The Landscape of Malicious Open Source Packages: 2025 Mid‑Year Threat Report
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
matrix-utilities
Advanced tools
Tiny, high performance utilities for performing 2/3D matrix calculations. Full unit test coverage, compatible with Node/CommonJS, AMD, and browser globals.
Tiny (607b gzipped), high performance utilities for performing 2/3D matrix calculations. Full unit test coverage, compatible with Node/CommonJS, AMD, and browser globals.
util = require 'matrix-utilities'
util.Identity() # returns new 3D identity matrix
util.add matrix1, matrix2 # returns matrix1 + matrix2
util.multiply matrix1, matrix2 # returns matrix1×matrix2
util.flip matrix # flip a matrix along x=y
util.to2d matrix
util.to3d matrix
util = require 'matrix-utilities'
# identity
matrix = util.Identity()
###
#=>
[
[1, 0, 0, 0]
[0, 1, 0, 0]
[0, 0, 1, 0]
[0, 0, 0, 1]
]
###
# to2d
util.to2d matrix
###
#=>
[
[1, 0, 0]
[0, 1, 0]
]
###
# flip
util.flip [
[1, 2, 3]
[4, 5, 6]
[7, 8, 9]
]
###
#=>
[
[1, 4, 7]
[2, 5, 8]
[3, 6, 9]
]
###
# add
one = [
[2, 4]
[6, 8]
]
two = [
[1, 3]
[5, 7]
]
util.add one, two
###
#=>
[
[3, 7]
[11, 15]
]
###
# multiply
one = [
[1, 2, 3]
[4, 5, 6]
[7, 8, 9]
]
two = [
[1, 2]
[3, 4]
[5, 6]
]
util.multiply one, two
###
#=>
[
[22, 28]
[49, 64]
[76, 100]
]
###
FAQs
Tiny, high performance utilities for performing 2/3D matrix calculations. Full unit test coverage, compatible with Node/CommonJS, AMD, and browser globals.
We found that matrix-utilities demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Research
Security News
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
Security News
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.