Skip to content
This repository has been archived by the owner on Aug 26, 2019. It is now read-only.

Releases: mil-tokyo/sushi2

Incompatible change of jsa2mat when >2D

17 Jan 06:54
Compare
Choose a tag to compare

Change behavior of jsa2mat (and mat2jsa) to intuitive way.

    var ndarray: any[] = [
      [[10, 20, 30],
      [40, 50, 60]],

      [[70, 80, 90],
      [100, 110, 120]]
    ];
    mat = $M.jsa2mat(ndarray);

From this version,
mat(:, :, 1) is [[10, 20, 30], [40, 50, 60]]
mat(:, :, 2) is [[70, 80, 90], [100, 110, 120]]

First public version

03 Dec 03:55
Compare
Choose a tag to compare

First release of Sushi2.
Compiled scripts for web browser is provided along with the release.