mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
* Added matrix functions `schur`, `sylvester` and `lyap` * Added docs for `schur`, `sylvester` and `lyap` * Added unit tests for `schur`, `sylvester` and `lyap` * Fixed lint and tests errors * fixed typescript and added Matrix + Array tests * lint fixed * fixed example in sylvester.js doc * Fixed docs and ci * fixed definition of lyap and sylvester * remark on diff defs for lyap * rm a trailing space Co-authored-by: Jos de Jong <wjosdejong@gmail.com>
16 lines
307 B
JavaScript
16 lines
307 B
JavaScript
export const lyapDocs = {
|
|
name: 'lyap',
|
|
category: 'Matrix',
|
|
syntax: [
|
|
'lyap(A,Q)'
|
|
],
|
|
description: 'Solves the Continuous-time Lyapunov equation AP+PA\'+Q=0 for P',
|
|
examples: [
|
|
'lyap([[-2, 0], [1, -4]], [[3, 1], [1, 3]])',
|
|
'lyap(A,Q)'
|
|
],
|
|
seealso: [
|
|
'schur', 'sylvester'
|
|
]
|
|
}
|