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: bc591b3819f104502421c246c50ae0be74a579d3beddb2ff9a42245fe6f7b372
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: 58203f3d83 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: bc591b3819 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: 5fc249a8b0 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


MTT: Model Transformation Tools
GitHub | SourceHut | Sourceforge | Fossil RSS ]