Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: combining two csv files by using math operations

by BillKSmith (Monsignor)
on May 17, 2021 at 20:09 UTC ( [id://11132701]=note: print w/replies, xml ) Need Help??


in reply to combining two csv files by using math operations

I know that you already have a solution. I believe that a one-pass solution with fewer temporary variables is easier to understand and maintain.
# copy headers to output my $headerA = <$dataA> . <$dataA>; my $headerB = <$dataB> . <$dataB>; print $dataC "__dataC__\n$headerA"; while (1) { last if (eof($dataA) or eof($dataB)); my @A = (split( /\s+/, <$dataA>))[0..3]; my @B = (split( /\s+/, <$dataB>))[0..3]; my $avgX = ($A[0] + $B[0])/2; my $avgY = ($A[1] + $B[1])/2; my $avgZ = ($A[2] + $B[2])/2; my $difF = ($A[3] - $B[3]); printf $dataC "%E %E %E %E\n", $avgX, $avgY, $avgZ, $difF; }
Bill

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11132701]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (5)
As of 2024-04-18 00:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found