Question: Issue with 3d plot

I experience an issued with a 3d plot. This is my code and I get: "Warning, expecting only range variables [H[s], H[j]] in expression eq to be plotted but found name eq." as a return from Maple.

restart;

eq = c[1]-abs(H[s])^2*sigma^2/abs(H[j])^2;

c[1] := 2;

c[2] := 4;

sigma := 1;

tmp := plot3d(eq, H[s] = .1 .. 2, H[j] = 0 .. 5, view = 0 .. 8,

axes = boxed, labels = [H[s], H[j], P[j]],

filled = [style = surface, transparency = .2]); plots:-display(tmp, view = 0.1e-1 .. 8)

Please Wait...