Question: Need help plotting a vector field using fieldplot3d command

Hello, I am attempting to plot a vector field in Maple. I have the following code so far:

 

SetCoordinates('cartesian'[x,y,z]):

F := VectorField(<y*z*e^(x*y*z)+3*x^(2),x*z*e^(x*y*z)+2*y*z+cos(y),x*y*e^(x*y*z)+y^(2)+1>);

 

I am struggling with the fieldplot3d commands, as I am supposed to plot it in the box -1<=x,y,z<=1. How do I go about inserting these bounds?

 

Please Wait...