Post Reply 
Plotting f(x,y,z)=0?
01-19-2023, 11:31 PM
Post: #2
RE: Plotting f(x,y,z)=0?
Maybe you can use fsolve to solve for z like this:

p:=(x,y,n)->(fsolve((cos(x)*sin(y)+cos(y)*sin(z)+cos(z)*sin(x)) = 0,z,0 .. (2*π)))(n)

That give 2 solutions between 0 and 2*pi so you can plot each one separately:

FZ1(X,Y)=p(X,Y,1) and FZ2((X,Y)=p(X,Y,2)

-road
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Plotting f(x,y,z)=0? - byoung - 01-19-2023, 07:02 PM
RE: Plotting f(x,y,z)=0? - roadrunner - 01-19-2023 11:31 PM
RE: Plotting f(x,y,z)=0? - Albert Chan - 01-20-2023, 12:30 AM
RE: Plotting f(x,y,z)=0? - byoung - 01-20-2023, 02:58 PM



User(s) browsing this thread: 1 Guest(s)