I am trying to figure out how to plot $4z^3-iz^2+7z+5-1$ in maple and am currently having issues on how to make this work. My code so far is
with(plots):
f := (x, i) ->4x^3-ix^2+7x+5-i
complexplot(f(x, i), x=-10 .. 10,i=-5..5)
I am getting this error:
Warning, expecting only range variable ix in expressions [5-Re(-4*x^3+ix^2+i-7*x), -Im(-4*x^3+ix^2+i-7*x)] to be plotted but found names [i, x]
I am trying to get this to plot so I can use the Newton-Raphson Algorithm on it to find its roots.

