Overview
Comment: | New argument to add zero columns -- useful if less basis functions than inputs |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
937f6b5b7530a451fb73328eeb6c9bfd |
User & Date: | gawthrop@users.sourceforge.net on 2002-04-28 15:38:06 |
Other Links: | branch diff | manifest | tags |
Context
2002-04-28
| ||
18:41:27 |
Fixed [ 549658 ] awk should be gawk. Replaced calls to awk with call to gawk. check-in: ad35120331 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
15:38:06 | New argument to add zero columns -- useful if less basis functions than inputs check-in: 937f6b5b75 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
15:36:55 | Modified to handle less basis functions than total inputs check-in: e499d1b480 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/lib/control/PPP/ppp_ustar.m from [0be0149c8e] to [84e1f5fdcb].
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | - + + + + + + + |
|
︙ | |||
56 57 58 59 60 61 62 | 62 63 64 65 66 67 68 69 70 71 72 73 74 | + + + + - + | if (packed==1) Ustar = [Ustar ustar]; else Ustar = [Ustar; ustar]; endif endfor if (n_zero>0) [N,M] = size(Ustar); Ustar = [Ustar zeros(N, n_zero)]; endif |