Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.15 KB | None | 0 0
  1. function [h] = make_filt(z1,z2,z3,z4,z5,z6)
  2.    
  3.     v = [z1 z2 z3 z4 z5 z6];
  4.     num = poly(v);
  5.     figure
  6.     zplane(num)
  7.     h = impz(num);
  8. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement