next up previous contents
Next: Rumore di quantizzazione Up: Listato Previous: distorsione   Contents

distn

function [ g ] = distn( x,n )

%DISTN Distorsioni non lineari dolci

 

%Esponenziale

if n==1

g=exp(x)-1;

end

 

%Radice

if n==2

g=1-sqrt(1-x);

end

 

%Tangente

if n==3

g=tan(x);

end



2001-10-22