Guest User

Untitled

a guest
Jan 23rd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.22 KB | None | 0 0
  1. function [ RV ] = lowpass( R, C, w )
  2. %UNTITLED4 Summary of this function goes here
  3. %   Detailed explanation goes here
  4.  
  5. size = length(w)
  6. RV = zeros(1,size)
  7. for i=1:size
  8.     RV(i) = 1/(sqrt(1+((R*C)*w(i)^2)));
  9. end
  10.  
  11. end
Add Comment
Please, Sign In to add comment