Differences From Artifact [2bc3da3dab]:
- File mttroot/mtt/lib/control/PPP/laguerre_matrix.m — part of check-in [182384e0d6] at 2001-04-02 15:02:35 on branch origin/master — Putting the PPP library under cvs (user: gawthrop@users.sourceforge.net, size: 323) [annotate] [blame] [check-ins using] [more...]
To Artifact [5e8ca33d42]:
- File mtt/lib/control/PPP/laguerre_matrix.m — part of check-in [af3953deae] at 2021-03-01 11:39:42 on branch master — Cleanup repository after cvs2git conversion. (user: jeff@gridfinity.com, size: 392) [annotate] [blame] [check-ins using] [more...]
- File mttroot/mtt/lib/control/PPP/laguerre_matrix.m — part of check-in [d12f66ccef] at 2002-04-28 15:35:24 on branch origin/master — Returns empty matrix when first parameter <1 (user: gawthrop@users.sourceforge.net, size: 392) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | + + - - - - - + + + + + + | function A = laguerre_matrix (n,p) ## usage: A = laguerre_matrix (n,p) ## ## A-matrix for generating nth order Laguerre functions with parameter p ## Copyright (C) 1999 by Peter J. Gawthrop if n<1 # Creatre empty matrix A = []; |