New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

mathjslab

Package Overview
Dependencies
Maintainers
1
Versions
89
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mathjslab - npm Package Compare versions

Comparing version 1.1.23 to 1.1.24

3

CHANGES.md

@@ -5,2 +5,5 @@ # Release notes

## 1.1.24
- Fix logical indexing (with operation and literal).
## 1.1.23

@@ -7,0 +10,0 @@ - Logical indexing.

26

lib/src/multi-array.d.ts

@@ -246,17 +246,31 @@ import { ComplexDecimal } from './complex-decimal';

* Set selected items from MultiArray by linear index or subscripts.
* @param nameTable Name Table
* @param id Identifier
* @param args linear indices or subscripts
* @param nameTable Name Table.
* @param id Identifier.
* @param args Linear indices or subscripts.
* @param right Value to assign.
*/
static setItems(nameTable: TNameTable, id: string, args: any[], right: MultiArray): void;
/**
* Set selected items from MultiArray by logical indexing.
* @param nameTable Name Table.
* @param id Identifier.
* @param arg Logical index.
* @param right Value to assign.
*/
static setItemsLogical(nameTable: TNameTable, id: string, arg: ComplexDecimal[], right: MultiArray): void;
/**
* Get selected items from MultiArray by linear indices or subscripts.
* @param M Matrix
* @param id Identifier
* @param M Matrix.
* @param id Identifier.
* @param indexList
* @returns MultiArray of selected items
* @returns MultiArray of selected items.
*/
static getItems(M: MultiArray, id: string, indexList: (ComplexDecimal | MultiArray)[]): MultiArray | ComplexDecimal;
/**
* Get selected items from MultiArray by logical indexing.
* @param M Matrix.
* @param id Identifier.
* @param items Logical index.
* @returns MultiArray of selected items.
*/
static getItemsLogical(M: MultiArray, id: string, items: MultiArray): MultiArray;

@@ -263,0 +277,0 @@ /**

{
"name": "mathjslab",
"version": "1.1.23",
"version": "1.1.24",
"description": "MathJSLab - An interpreter with language syntax like MATLAB®/Octave. ISBN 978-65-00-82338-7",

@@ -5,0 +5,0 @@ "main": "lib/mathjslab.js",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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