ADDED mttroot/mtt/bin/trans/m/pow.m Index: mttroot/mtt/bin/trans/m/pow.m ================================================================== --- /dev/null +++ mttroot/mtt/bin/trans/m/pow.m @@ -0,0 +1,9 @@ +function z = pow (x,y) + + ## usage: z = pow (x,y) + ## + ## Computes z = x^y + + z = x^y; + +endfunction