problem



Hi,
I am really not an expert !
I have a sagemath program and I would like to get the same in wxmaxima 
(maxima)
It's a RLC resonance.

here is the code :

sage---------------------------------------------------------------------------------------------------------------------
var('omega w fr')
R = 1000.0
L = 1
C = 1.0e-9
w = 1/sqrt(L*C)
plot(abs(1 / (1 + i * omega * R * C - omega * omega * L * C)), (omega, 
0, 2 * w),figsize=(4,3))


wxmaxima----------------------------------------------------------------------------------------------------
wxplot2d([(abs(1/(1+%i*x*R*C-omega*omega*L*C)),omega,0,2*w)], 
[omega,-25,25])$

If someone could do that for me : Many thanks :)

Henri