1. sequence compression ?
- Posted by Bernie Ryan <xotron at bluefrognet.net> Feb 25, 2003
- 468 views
I am looking for a method to compress/decompress a sequence of 32bit integers that has the highest compression ratio in Euphoria Thanks Bernie
2. Re: sequence compression ?
- Posted by Greg Haberek <g.haberek at comcast.net> Feb 25, 2003
- 471 views
Are you looking to compress just sequences? or maybe whole files? there are a few different ways to go about compressing data once the intent is specified. I've found that Huffman compression works well on large text files, yielding results of 40% - 60%, but there are others out there, just search for 'compression' in the Archive. ----- Original Message ----- From: Bernie Ryan <xotron at bluefrognet.net> Subject: sequence compression ? I am looking for a method to compress/decompress a sequence of 32bit integers that has the highest compression ratio in Euphoria Thanks Bernie TOPICA - Start your own email discussion group. FREE!
3. Re: sequence compression ?
- Posted by Bernie Ryan <xotron at bluefrognet.net> Feb 26, 2003
- 438 views
> Are you looking to compress just sequences? or maybe whole files? there are a > few different ways Greg: I'am just talking about sequences. I know about the compression routine files in archive. Thanks Bernie
4. Re: sequence compression ?
- Posted by Greg Haberek <g.haberek at comcast.net> Feb 27, 2003
- 456 views
Ok, another question... do you want compress the length of a sequence, or the acutal memory size (in bytes)? ----- Original Message ----- From: Bernie Ryan <xotron at bluefrognet.net> Subject: Re: sequence compression ? > Are you looking to compress just sequences? or maybe whole files? there are a > few different ways Greg: I'am just talking about sequences. I know about the compression routine files in archive. Thanks Bernie TOPICA - Start your own email discussion group. FREE!
5. Re: sequence compression ?
- Posted by Bernie Ryan <xotron at bluefrognet.net> Feb 27, 2003
- 444 views
> Ok, another question... do you want compress the length of a sequence, or the > acutal memory size > (in bytes)? Greg: I want to shrink the sequence to it's smallest length but have an alglorithm to restore it as I poke the integers into memory. Thanks Bernie
6. Re: sequence compression ?
- Posted by jordah at btopenworld.com Feb 28, 2003
- 447 views
Check out my binary.e in recent user contributions Jordah > from: Bernie Ryan <xotron at bluefrognet.net> > date: Thu, 27 Feb 2003 15:18:18 > to: EUforum at topica.com > subject: Re: sequence compression ? > > > > Ok, another question... do you want compress the length of a sequence, or > the > acutal memory size > > (in bytes)? > > Greg: > > I want to shrink the sequence to it's smallest length but have > an alglorithm to restore it as I poke the integers into memory. > > Thanks > Bernie > > > > TOPICA - Start your own email discussion group. FREE! >
7. Re: sequence compression ?
- Posted by Bernie Ryan <xotron at bluefrognet.net> Feb 28, 2003
- 511 views
> Check out my binary.e in recent user contributions Thanks Jordah Bernie
8. Re: sequence compression ?
- Posted by Bernie Ryan <xotron at bluefrognet.net> Mar 02, 2003
- 452 views
>Re: sequence compression ? jor- at btopenworld.com > Feb 28, 2003 08:08 PST > Check out my binary.e in recent user contributions > Jordah Jordah: I modified my eru.ex file to use your binary.e and when I used your code to compress resource files the resulting file size was 205,013 with the method that I'am already currently using; the resulting file size is 93,960; so I did not gain any better compression from your binary.e. But that could be because you are compressing Objects and I am only concerned with a sequence compression. Thank You for your response, Bernie