Question: How to plot the intersections of Zc and Zs?

How to plot  the intersection of Zc and Zs?

restart; with(plots)

m := 1; n := 2

``

Zc := proc (x, y) options operator, arrow; m*cos((1/180)*x*Pi)+n*cos((1/180)*y*Pi) end proc

Zs := proc (x, y) options operator, arrow; m*sin((1/180)*x*Pi)+n*sin((1/180)*y*Pi) end proc

plot3d([Zc(x, y), Zs(x, y)], x = 0 .. 180, y = 0 .. 180)

 

Z := proc (x, y) options operator, arrow; `intersect`(Zc(x, y), Zs(x, y)) end proc

proc (x, y) options operator, arrow; `intersect`(Zc(x, y), Zs(x, y)) end proc

(1)

"How to plot intersect of Zc and Zs"?""

Download plot-15.mw

Please Wait...