Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiolindau committed Oct 1, 2023
1 parent 45a7414 commit d2707b7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# MathJSLab

[![NPM version][npm-image]][npm-url]
[![npm download][download-image]][download-url]
[![DOI](https://zenodo.org/badge/606645564.svg)](https://zenodo.org/badge/latestdoi/606645564)
[![MIT License](https://img.shields.io/badge/License-MIT-brightgreen.svg)](https://github.com/sergiolindau/mathjslab/blob/master/LICENSE)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mathjslab",
"version": "1.0.24",
"version": "1.0.25",
"description": "MathJSLab - An interpreter with language syntax like MATLAB/Octave",
"main": "build/mathjslab.js",
"types": "build/src/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/multi-array.ts
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ export class MultiArray {
matrix = left;
} else {
throw new Error(
`operator ${op}: nonconformant arguments (op1 is ${left.dim[0]}x${left.dim[1]}, op2 is ${right.dim[0]}x${right.dim[1]}).`,
`operator ${op}: non-conforming arguments (op1 is ${left.dim[0]}x${left.dim[1]}, op2 is ${right.dim[0]}x${right.dim[1]}).`,
);
}
const result = new MultiArray([matrix.dim[0], row.dim[1]]);
Expand Down

0 comments on commit d2707b7

Please sign in to comment.