Re: Simple question about python logic.

2007-10-12 Thread Colin J. Williams
Tim Chase wrote: >> I have a file containing following data. But the dimension can be >> different. >> >> A B C D E F G >> 3 4 1 5 6 2 4 >> 7 2 4 1 6 9 3 >> 3 4 1 5 6 2 4 >> 7 2 4 1 6 9 3 >> . >> . >> . >> . >> >> What is the best approach to make a column vector with the name such >> as A B, etc?

Re: Simple question about python logic.

2007-10-12 Thread Tim Chase
> I have a file containing following data. But the dimension can be > different. > > A B C D E F G > 3 4 1 5 6 2 4 > 7 2 4 1 6 9 3 > 3 4 1 5 6 2 4 > 7 2 4 1 6 9 3 > . > . > . > . > > What is the best approach to make a column vector with the name such > as A B, etc? There are a couple different

Re: Simple question about python logic.

2007-10-12 Thread Carl Banks
On Oct 12, 11:32 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I have a file containing following data. But the dimension can be > different. > > A B C D E F G > 3 4 1 5 6 2 4 > 7 2 4 1 6 9 3 > 3 4 1 5 6 2 4 > 7 2 4 1 6 9 3 > . > . > . > . > > What is the best approach to make a column vecto

Simple question about python logic.

2007-10-12 Thread [EMAIL PROTECTED]
I have a file containing following data. But the dimension can be different. A B C D E F G 3 4 1 5 6 2 4 7 2 4 1 6 9 3 3 4 1 5 6 2 4 7 2 4 1 6 9 3 . . . . What is the best approach to make a column vector with the name such as A B, etc? -- http://mail.python.org/mailman/listinfo/python-list