Go to file
David Manura fe6837f6dc import version 0.2.9, 2008-08-26
- decoupled symbol class from matrix class:
	-   matrix.replace has new semantics, applying a function to each element.
	      For old behavior: mtx = mtx:replace(matrix.symbol.makereplacer(...))
	-   replaced mtx:gsub(a,b) with mtx = mtx:replace(symbol.gsub,a,b)
	-   replaced matrix.tosymbol(mtx) with mtx = mtx:replace(symbol)
	- eliminated dependency on complex:
	-   replaced matrix.tocomplex(mtx) with mtx = mtx:replace(complex)
	-   replaced matrix.conjugate(mtx) with mtx = mtx:replace(complex.conjugate)
	-   mulnum and divnum no longer can take num of type string
	-   complex table no longer returned on module load
	- renamed remcomplex to elementstostrings and changed it to return new
	    matrix rather than doing in-place modification
	- fixed matrix.numround (numround variable mispelled).
	    Reported by Goeff Richards.
2010-09-22 21:41:53 -04:00
doc import version 0.2.9, 2008-08-26 2010-09-22 21:41:53 -04:00
lua import version 0.2.9, 2008-08-26 2010-09-22 21:41:53 -04:00
samples import version 0.2.9, 2008-08-26 2010-09-22 21:41:53 -04:00
tests import version 0.2.9, 2008-08-26 2010-09-22 21:41:53 -04:00
LICENSE.txt import version 0.2.9, 2008-08-26 2010-09-22 21:41:53 -04:00
README.txt import version 0.2.9, 2008-08-26 2010-09-22 21:41:53 -04:00
rockspec import version 0.2.9, 2008-08-26 2010-09-22 21:41:53 -04:00

README.txt

== Description ==

LuaMatrix - Matrices and matrix operations implemented in pure Lua.

This supports operations on matrices and vectors whose elements are
real, complex, or symbolic.  Implemented entirely in Lua as tables.
Includes a complex number data type too.

For details on use, see the comments in matrix.lua and complex.lua,
as well as the test suite.

To install, copy matrix.lua and complex.lua into your LUA_PATH.  The
modules can alternately be installed via LuaRocks ("luarocks install
luamatrix").

== Project Page ==

http://lua-users.org/wiki/LuaMatrix

== License ==

See the LICENSE.txt file for licensing details.