Overview
Comment: | Equivalent to the c pow function (computes x^y) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
a0c19a9a5642f54015fe7ebc45b31513 |
User & Date: | gawthrop@users.sourceforge.net on 2001-04-03 14:51:30 |
Other Links: | branch diff | manifest | tags |
Context
2001-04-04
| ||
01:03:01 | Fixed elimination of 0 in xxx(0...) when ... does not start with a digit. check-in: 66c73b4221 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
2001-04-03
| ||
14:51:30 | Equivalent to the c pow function (computes x^y) check-in: a0c19a9a56 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
14:49:42 |
Revised to incorporate new ssim (sensitivity simulation) representation (m only just now). check-in: 5aefc73131 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/m/pow.m version [0360ed3c86].
> > > > > > > > > | 1 2 3 4 5 6 7 8 9 | function z = pow (x,y) ## usage: z = pow (x,y) ## ## Computes z = x^y z = x^y; endfunction |