Eincalc is spreadsheet engine modeled around tensor operations targeting
the web. This product is still in Alpha so expect some bugs. Saving is
not supported at the moment!
Try it out - copy this into any cell
=([1,2,3,4,5,6,7,8,9]*2) | reshape<[3,3]>
or Multiply 2 random valued matrices and square the values (bounds
of 1 and -1 respectively)
=(ij,jk->ik, @rand<1,[100,100]>, @rand<-1,[100,100]>) | pow<2>
more example functions | expressions to start experimenting Quick Tip: Cell ranges are separated by .. and not
a column for you excel or sheets users. So A1:B2 becomes @A1..B2 and =A1+A2 becomes =@A1 + @A2
More to come!