• Stars
    star
    4
  • Rank 3,208,263 (Top 66 %)
  • Language
    JavaScript
  • Created about 3 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

NodeJS Package for MATLAB

node-matlab

NPM npm GitHub issues npm MATLAB

Runs MATLAB script and gives output

Install

$ npm install node-matlab

Requirements

MATLAB 2019a or later must be installed on your pc, you don't need to install Python/Jupyter Notebook or MATLAB kernel

Usage

// One Line
const matlab = require("node-matlab");

matlab
  .run("3+4")
  .then((result) => console.log(result))
  .catch((error) => console.log(error));

// 7

You need to escape "\n", "\r" etc. to run multiline scripts

// Multi Line
const matlab = require("node-matlab");

matlab
  .run(
    `clc;
clear;
counter = 0;

period = 0.1;
totalTime = 2;

for number = 0:period:totalTime
  counter = counter + 1;
  array(counter) = -2 * cos(2 * pi * 2 * number + deg2rad(47));
  fprintf("t(%g) = %g\\n", number, array(counter));
end
  `
  )
  .then((result) => console.log(result))
  .catch((error) => console.log(error));

/**********************
t(0) = -1.364
t(0.1) = 0.969619
t(0.2) = 1.96325
t(0.3) = 0.243739
t(0.4) = -1.81262
t(0.5) = -1.364
t(0.6) = 0.969619
t(0.7) = 1.96325
t(0.8) = 0.243739
t(0.9) = -1.81262
t(1) = -1.364
t(1.1) = 0.969619
t(1.2) = 1.96325
t(1.3) = 0.243739
t(1.4) = -1.81262
t(1.5) = -1.364
t(1.6) = 0.969619
t(1.7) = 1.96325
t(1.8) = 0.243739
t(1.9) = -1.81262
t(2) = -1.364
*********************/
// Read From File
const matlab = require("node-matlab");

matlab
  .run("file.m")
  .then((result) => console.log(result))
  .catch((error) => console.log(error));

// t + 4*exp(-t) - 3*exp(-2*t) + 1