Re: [Numpy-discussion] Problem with Numpy and array

2011-05-12 Thread Youngung Jeong
Hello, Use np.loadtxt a = np.loadtxt(filename) ##in case no rows to skip. a = a.transpose() ##in your case, I guess you should transpose it.. Youngung Jeong On Thu, May 12, 2011 at 7:21 PM, Claudia Chan Yone chanyone.clau...@gmail.com wrote: Hi, I have

Re: [Numpy-discussion] Problem with Numpy and array

2011-05-12 Thread Youngung Jeong
Sorry you don't have to transpose the matrix... Youngung Jeong On Thu, May 12, 2011 at 7:30 PM, Youngung Jeong youngung.je...@gmail.comwrote: Hello, Use np.loadtxt a = np.loadtxt(filename) ##in case no rows to skip. a = a.transpose() ##in your case, I guess you

Re: [Numpy-discussion] Array of size 'n' with common difference 1

2011-04-29 Thread Youngung Jeong
Usenp.arange(-60, 90.0001, 0.25) Youngung Jeong Graduate student Materials Mechanics Laboratory Graduate Institute of Ferrous Technology Pohang University of Science and Technology On Fri, Apr 29, 2011 at 4:26 PM, dileep kunjaai dileepkunj...@gmail.comwrote: Dear sir, I am trying