Rank: 1616 based on 37 downloads (last 30 days) and 1 file submitted
photo

Frédéric Chanal

E-mail

Personal Profile:
Professional Interests:

 

Watch this Author's files

 

Files Posted by Frédéric
Updated   File Tags Downloads
(last 30 days)
Comments Rating
16 Mar 2004 haarmtx Compute a n*n Haar matrix. Author: Frédéric Chanal haar, wavelet, audio processing, video processing, transformation, signal processing 37 4
  • 3.0
3.0 | 5 ratings
Comments and Ratings on Frédéric's Files View all
Updated File Comment by Comments Rating
11 Feb 2009 haarmtx Compute a n*n Haar matrix. Author: Frédéric Chanal sa, tr
08 Jul 2007 haarmtx Compute a n*n Haar matrix. Author: Frédéric Chanal liberty, liberty

don't use "inf" as a variable name!!!!

05 Nov 2006 haarmtx Compute a n*n Haar matrix. Author: Frédéric Chanal vnucak, peter

nice one.rhis is my work:
function h=haAar2(N)

%N=2^n;
h=zeros(N,N);
h(1,1:N)=ones(1,N)/sqrt(N);

for k=1:N-1
  p=fix(log(k)/log(2));
  q=k-(2^p);
  k1=2^p; t1=N/k1;
  k2=2^(p+1); t2=N/k2;
  for i=1:t2
    h(k+1,i+q*t1) = (2^(p/2))/sqrt(N);
    h(k+1,i+q*t1+t2) =-(2^(p/2))/sqrt(N);
  

  end
end

05 Nov 2006 haarmtx Compute a n*n Haar matrix. Author: Frédéric Chanal vnucak, peter

nice one

09 Jan 2005 haarmtx Compute a n*n Haar matrix. Author: Frédéric Chanal Watkins, Jerome

Properly constructs the Haar matrix. The code is not vectorized, but this is fine because you only need to call the function once and can reuse the matrix from that point onward.

Top Tags Applied by Frédéric
audio processing, haar, signal processing, transformation, video processing
Files Tagged by Frédéric
Updated   File Tags Downloads
(last 30 days)
Comments Rating
16 Mar 2004 haarmtx Compute a n*n Haar matrix. Author: Frédéric Chanal haar, wavelet, audio processing, video processing, transformation, signal processing 37 4
  • 3.0
3.0 | 5 ratings

Contact us at files@mathworks.com