Feeds
提问
How do I plot the intersection of two equations in 3d?
So I know how to plot two equations on the same plot, but is it possible to plot those two equations and make it so that only th...
8 years 前 | 1 个回答 | 0
1
个回答提问
How would I go about plotting an ellipse?
So I have an ellipse (x^2/9)+(y^2/16)+(z^2/9)=1, how do I go about plotting the surface plot of this?
8 years 前 | 2 个回答 | 0
2
个回答提问
How do I plot 2 surf plots in the same figure
so I have 2 surf plots Z1 and Z2. I can plot both separately using surf(X,Y,Z1) and surf(X,Y,Z2) but how do I plot them...
8 years 前 | 1 个回答 | 0
1
个回答提问
Error: The expression to the left of the equals sign is not a valid target for an assignment.
I'm trying to integrate this rather nasty integral but i don't get a numerical answer >> syms z >> int((25/4*(2*tan(z/2)*tan...
8 years 前 | 1 个回答 | 0
1
个回答提问
How do I plot a 3D function characterized by 2 equations?
So far, I've been plotting 3d functions like so: [X,Y]=meshgrid(-3:0.5:3,-3:0.5:3); Z=2-X-Y; surf(X,Y,Z) b...
8 years 前 | 1 个回答 | 0
1
个回答提问
How do I plot a 3D surface bounded over the first octant?
I'm trying to plot the surface X+Y+Z=a bounded in the first octant, where a is a constant. My code so far is as follows, however...
8 years 前 | 1 个回答 | 0
