Comparing version 1.1.23 to 1.1.24
@@ -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. |
@@ -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
496066
7466