h = sgsdf1d([-5:5],1,0,0,0);
[A,u]=ztrans1d(h);
subplot(2,2,1),plot(u/pi,A);grid;
title('Smoothing of Order 1');
h = sgsdf1d([-5:5],5,0,0,0);
[A,u]=ztrans1d(h);
subplot(2,2,2),plot(u/pi,A);grid;
title('Smoothing of Order 5');
h = sgsdf1d([-5:5],3,1,0,0);
[A,u]=ztrans1d(h);
subplot(2,2,3),plot(u/pi,A);grid;
title('1st Derivative of Order 3');
h = sgsdf1d([-5:5],4,3,0,0);
[A,u]=ztrans1d(h);
subplot(2,2,4),plot(u/pi,A);grid;
title('3ed Derivative of Order 4');
h=sgsf2d([-5:5],[-5:5],3,1);
[u,v,T]=ztrans2d(h);
figure;
subplot(2,2,1),surfc(u/pi,v/pi,T);
title('Smoothing of Order 3');
h=sgsf2d([-5:5],[-5:5],7,1);
[u,v,T]=ztrans2d(h);
subplot(2,2,2),surfc(u/pi,v/pi,T);
title('Smoothing of Order 7');
h=sgdf2d([-5:5],[-5:5],3,1);
[u,v,T]=ztrans2d(h);
subplot(2,2,3),surfc(u/pi,v/pi,T);
title('1st Derivative of Order 3');
h=sgdf2d([-5:5],[-5:5],7,1);
[u,v,T]=ztrans2d(h);
subplot(2,2,4),surfc(u/pi,v/pi,T);
title('1st Derivative of Order 7');