Search Comments and Ratings

go

Comments and Ratings

   
Date File Comment by Comment Rating
14 May 2009 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò pingker

好东西,谢谢~

25 Mar 2009 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò mitta, avinash

3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18

ru guys sure if a Matlab program works out a Huffman code for this source.
please help me.....

can u send d file as m file or text...

please help me

19 Nov 2008 untexlabel Build a string which used with a TeX interpreter shows exactly the string as it is ... Author: Giuseppe Ridinò Webb, Chad

This utility works as advertised - as mentioned, only a select few text objects have the "Interpreter" property available, and this solves the case where that property is not available - I used it to properly display the underscores in a "waitbar" message. Nice work!

03 Oct 2008 LZW Compression Algorithm Simple LZW algorithm implementation. Author: Giuseppe Ridinò challam, naidu

nice very good

19 Aug 2008 LZW Compression Algorithm Simple LZW algorithm implementation. Author: Giuseppe Ridinò chaurasiya, vibhav

thanks

27 May 2008 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò Rodrigues, Edson

It's great nice job Giuseppe! thank you so mutch...

15 Apr 2008 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò Agrawal, Ketan

nice

11 Apr 2008 strrepfile Apply the STRREP function to the file content. Author: Giuseppe Ridinò Ruder, Johannes

That was exactly what i was looking for!
Thanks, great work!!!

18 Mar 2008 LZW Compression Algorithm Simple LZW algorithm implementation. Author: Giuseppe Ridinò Frank, Michael

Very clean code, very easy to use and understand. Recommended if you are trying to learn about compression algorithms!

12 Feb 2008 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò karnattak, abhishek

involve basic programming also...

14 Jan 2008 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò ahmad, Mahmoud

very nice

22 Dec 2007 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò Al-Hetar, Rodhwan

thanks,Download Now

21 Apr 2007 LZW Compression Algorithm Simple LZW algorithm implementation. Author: Giuseppe Ridinò Decaf, Natural

Not a good implementation. The performance is so bad even for a 512x512 size of image.

17 Apr 2007 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò seyit, ahmet

09 Apr 2007 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò quan, li

have a look

29 Mar 2007 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò monmon, monmon

i like matlab codes

20 Feb 2007 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò zandesh, shabnam

03 Feb 2007 LZW Compression Algorithm Simple LZW algorithm implementation. Author: Giuseppe Ridinò Bhatt, Shekhar

06 Nov 2006 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò Allal, RAMZI

I ask for the huffman encode/decode.
th's

27 Oct 2006 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò pookie, pook

good very

19 Oct 2006 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò tin, minh

10 Oct 2006 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò suzzia, amir

27 Sep 2006 LZW Compression Algorithm Simple LZW algorithm implementation. Author: Giuseppe Ridinò naik, vinayak

thanks

02 Aug 2006 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò Qumar, Jawed

06 Jul 2006 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò Tadesse, Amanuel

I am student of communication engineering
therefore I am taking acourse on coding theory so let's cooperate.

05 Jul 2006 strrepfile Apply the STRREP function to the file content. Author: Giuseppe Ridinò dragon, duke

great work, very useful.

20 Feb 2006 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò Agrawal, Ketan

No comments

14 Nov 2005 untexlabel Build a string which used with a TeX interpreter shows exactly the string as it is ... Author: Giuseppe Ridinò L, V

By setting the default interpreter, I mean set the default value for a property using the command :

set(0,'DefaulttextInterpreter','none')

This don't work for legends and annotation (perhaps others? I think for all objects that are inside axes)

14 Nov 2005 untexlabel Build a string which used with a TeX interpreter shows exactly the string as it is ... Author: Giuseppe Ridinò L, V

Setting the default interpreter to 'none' can only be done for a few set of text objects, ie the axes labels and the axes' title. For example, legend and annotation texts cannot be set by this method, thus we are forced to use this fonction to do "as if" the interpreter is none.

23 Oct 2005 LZW Compression Algorithm Simple LZW algorithm implementation. Author: Giuseppe Ridinò sirka, ferhat

13 Oct 2005 LZW Compression Algorithm Simple LZW algorithm implementation. Author: Giuseppe Ridinò Utreja, Sumit

25 Jun 2005 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò gabra, george

i want huffman code , because i have some project by it please send it to me in my e-mail if that possible . thank's

19 Jun 2005 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò ed, mic

thank u

18 May 2005 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò Iqbal, Shoaib

12 May 2005 LZW Compression Algorithm Simple LZW algorithm implementation. Author: Giuseppe Ridinò deka, ginita

22 Mar 2005 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò Kleder, Michael

Works great. Thanks!

21 Jan 2005 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò bao, chau

huffman

08 Dec 2004 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò Sen, Aytac

It worked perfectly and fast enough for me. The comment 'worst code i ever saw' is a discouraging comment for this submission! I was hesitating for downloading it, but then I gave it a go and it was a perfect solution. Thanks.

29 Nov 2004 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò v, rakesh

worst code i ever saw

13 Jul 2004 untexlabel Build a string which used with a TeX interpreter shows exactly the string as it is ... Author: Giuseppe Ridinò Ridinò, Giuseppe

Try this:

  file = 'file_0_1';
  CreateStruct.WindowStyle='non-modal';
  CreateStruct.Interpreter='tex';
  msgbox(['File ',file,' not found!'],'warning','warn',CreateStruct)
  msgbox(['File \bf',file,'\rm not found!'],'warning','warn',CreateStruct)
  msgbox(['File \bf',untexlabel(file),'\rm not found!'],'warning','warn',CreateStruct)

You may note the difference among the 3 cases.

12 Jul 2004 untexlabel Build a string which used with a TeX interpreter shows exactly the string as it is ... Author: Giuseppe Ridinò Simoneau, Matthew

Another alternative is to turn off the TeX interpreter like this:

>> text(.5,.5,'D:\Work\foo','Interpreter','none')

or

title('D:\Work\foo','Interpreter','none')

02 Jul 2004 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò Füessl, Florian

Hi,

if you change the following lines of the code this is probably one of the fastest huffman codes for matlab:
--- norm2huff.m ---
% frequency
%f = frequency(vector);
% frequency function is obsolete
% hist function is much, much faster!!!
f = hist( double( vector(:) ), 0:65535 );
f = f/sum(f);

Note: I also updated the script to handle uint16 instead of uint8; so for uint8 maybe try the following hist function: ...hist(...,0:255)

19 May 2004 Huffman code Simple Huffman code implementation. Author: Giuseppe Ridinò B, A

 

MATLAB Central Terms of Use

NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content. Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available via MATLAB Central. Read the complete Terms prior to use.

Contact us at files@mathworks.com