Mercurial > hg > octave-lyh
comparison scripts/control/base/gram.m @ 4462:3e48e60a1f8b
[project @ 2003-07-12 03:31:41 by jwe]
author | jwe |
---|---|
date | Sat, 12 Jul 2003 03:31:41 +0000 |
parents | 7923abdeb4e5 |
children | bdbee5282954 |
comparison
equal
deleted
inserted
replaced
4461:af308ca1a354 | 4462:3e48e60a1f8b |
---|---|
26 | 26 |
27 ## Author: A. S. Hodel <a.s.hodel@eng.auburn.edu> | 27 ## Author: A. S. Hodel <a.s.hodel@eng.auburn.edu> |
28 | 28 |
29 function m = gram (a, b) | 29 function m = gram (a, b) |
30 | 30 |
31 ## let lyap do the error checking... | 31 ## Let lyap do the error checking... |
32 m = lyap(a,b*b'); | 32 |
33 m = lyap (a, b*b'); | |
33 | 34 |
34 endfunction | 35 endfunction |