in reply to Re: Re: Re: Fast Matrix Load
in thread Fast Matrix Load

Minor nitpick....
@row = split;
Will be different than:
@row = split /\t/;
The latter leaving the trailing newline on the last column. May or may not cause grief depending on what you do to the final matrix before trying to print it out.