R
richardgda
Guest
Salut,
J'ai programme Matlab pour dwt.i ne sais pas comment convertir ceci en U coding.if VHDL ont la moindre idée s'il vous plaît me répondre.
-------------------------------------------------- -----------------
effacer tous;
x = input ( 'Entrez le signal d'entrée »);
= lh d'entrée ( 'Entrez le coeff filtre');
b = longueur (LH);
HH = [zeros (1, b)];
pour i = 0: b-1
hh (bi) = lh (i 1);
if (mod ((i 1), 2) == 0)
hh (bi) = (-1) * hh (bi);
fin;
fin;
disp (hh);
ly = sampconv1 (x, LH);
HY = sampconv1 (x, hh);
subplot (3,2,1); plot (x);
subplot (3,2,2); plot (LH);
subplot (3,2,3); plot (hh);
subplot (3,2,4); plot (ly);
subplot (3,2,5); plot (hy);
fonction s = sampconv1 (x, h)
a = longueur (x);
b = longueur (h);
N = a b-1;
x = [x, zeros (1, Na)];
h = [h, zeros (1, NB)];
y = [zeros (1, N)];
s = [zeros (1, N / 2)];
pour i = 1: N
pour k = 1: i
y (i) = Y (i) x (k) * h (i-k 1);
fin;
fin;
pour i = 1
<img src="http://www.edaboard.com/images/smiles/icon_sad.gif" alt="Triste" border="0" />
N / 2)
s (i) = Y (2 * i-1);
fin;
disp ;
disp (s);
J'ai programme Matlab pour dwt.i ne sais pas comment convertir ceci en U coding.if VHDL ont la moindre idée s'il vous plaît me répondre.
-------------------------------------------------- -----------------
effacer tous;
x = input ( 'Entrez le signal d'entrée »);
= lh d'entrée ( 'Entrez le coeff filtre');
b = longueur (LH);
HH = [zeros (1, b)];
pour i = 0: b-1
hh (bi) = lh (i 1);
if (mod ((i 1), 2) == 0)
hh (bi) = (-1) * hh (bi);
fin;
fin;
disp (hh);
ly = sampconv1 (x, LH);
HY = sampconv1 (x, hh);
subplot (3,2,1); plot (x);
subplot (3,2,2); plot (LH);
subplot (3,2,3); plot (hh);
subplot (3,2,4); plot (ly);
subplot (3,2,5); plot (hy);
fonction s = sampconv1 (x, h)
a = longueur (x);
b = longueur (h);
N = a b-1;
x = [x, zeros (1, Na)];
h = [h, zeros (1, NB)];
y = [zeros (1, N)];
s = [zeros (1, N / 2)];
pour i = 1: N
pour k = 1: i
y (i) = Y (i) x (k) * h (i-k 1);
fin;
fin;
pour i = 1
<img src="http://www.edaboard.com/images/smiles/icon_sad.gif" alt="Triste" border="0" />
N / 2)
s (i) = Y (2 * i-1);
fin;
disp ;
disp (s);