Hello keid,
Can you please post the first few lines of a file with several curves in it?
The number of lines you can read in a similar way as you split the data. E.g. you can do it like this:
my $first = shift @content; # remove 1st line
my ($dummy, $num) = split/curve_id_num/...
Hi keid,
Please find one way to do it below. The basic idea is to read in everything first from data.txt and to throw away lines which we know aren't data.
The key for you is marked in line # A. $content contains, e.g., "1 4" as the first element. I split it here into a list with just two...
Hello Mark,
A few things.
1) Don't panic. Easier said than done, but I've been in a comparable situation before. It's important to keep a clear mind. Hurting feelings, doubts and all this is normal. It has it's time. Than, next step, use your clear mind again.
Remember how you felt when you...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.