function [ Lfd ] = EvalInductance( w, Lo, q)
%EVALINDUCTANCE Evaluates the frequency-dependent inductance for a
%particular frequency, w, and a particular set of filter characteristic
%frequencies, 10^q
n=length(q);
Lfd=0;
for k=n:-1:1 
    Lfd=(1j*w/10^q(k))/(1+Lfd);
end
Lfd=Lo/(1+Lfd);