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 wrote: > Hello, > > Use np.loadtxt > > >>> a = np.loadtxt(filename) ##in case no rows to skip. > >>> a = a.transpose()

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

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

2011-04-29 Thread Youngung Jeong
Use " >> np.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 wrote: > Dear sir, > I am tryi