Re: [Numpy-discussion] Matlab Translation - sqrt elementwise

2007-04-17 Thread Bill Baxter
Be sure to check out the numpy examples page too. http://www.scipy.org/Numpy_Example_List Always a good resource if you're not sure how to call a particular command. --bb On 4/18/07, Miquel Poch <[EMAIL PROTECTED]> wrote: > Hi, > > I've found the next expression write it in Matlab, > > Rtx

Re: [Numpy-discussion] Matlab Translation - sqrt elementwise

2007-04-17 Thread Francesc Altet
El dt 17 de 04 del 2007 a les 20:58 +0200, en/na Miquel Poch va escriure: > Hi, > > I've found the next expression write it in Matlab, > > Rtx = sqrt(Rt); > > Rtx is a matrix, and that's why I need sqrt() to operate elementwise. > I've read NumPy tutorial, and I know it's possible, > > A se

Re: [Numpy-discussion] Matlab Translation - sqrt elementwise

2007-04-17 Thread Travis Oliphant
Miquel Poch wrote: > Hi, > > I've found the next expression write it in Matlab, > > Rtx = sqrt(Rt); > > Rtx is a matrix, and that's why I need sqrt() to operate elementwise. > I've read NumPy tutorial, and I know it's possible, > > A set of this functions, has been provided wich optimize certain

[Numpy-discussion] Matlab Translation - sqrt elementwise

2007-04-17 Thread Miquel Poch
Hi, I've found the next expression write it in Matlab, Rtx = sqrt(Rt); Rtx is a matrix, and that's why I need sqrt() to operate elementwise. I've read NumPy tutorial, and I know it's possible, A set of this functions, has been provided wich optimize certain kinds of calculations on arrays. M