Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

One solution I've seen elsewhere turned the float into an int by multiplying by a set power of ten. The precision was set by the spec, so they knew they only need 4 decimal places. Then they packed the int in network order (that's the N in your second example). When they unpacked it, they divided by the same power of ten.

If you want this to be really fast, you can cook up something simple in C (or even Inline::C) to do the same thing. Since you are using pack(), your Perl and C implementations will probably look the same so once you figure it out in Perl, it should be easy to translate to C.

There was one time I had to do this for several gigs of data, and I actually pulled out the assembly language to do it. The target was the Motorola 68k family, which had several nice instructions to flip these things around (flip the words, then flip the bytes in the words). That was a huge win even over the C code. I only got away with that because I knew exactly which microprocessors we had to use for the problem (ah, the joys of custom built hardware!)

Good luck!

--
brian d foy <bdfoy@cpan.org>

In reply to Re: Stumped by a pack/unpack problem by brian_d_foy
in thread Stumped by a pack/unpack problem by crenz

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (4)
As of 2024-04-25 04:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found