I have been trying to evaluate the following code, but nothing happened. I don't see any result.
ParametricPlot3D[{v Cosh[u/v], v Cosh[u/v], u}, {u, -1, 1}, {v, -1, 1}]
What am I doing wrong?
|
I have been trying to evaluate the following code, but nothing happened. I don't see any result.
What am I doing wrong? |
||||
|
You are dividing by zero at a point where there is a singularity anyway. Mathematica handles this in the 2D case:
You can get the graphic you are looking for by breaking up the plot into pieces, avoiding the zone near $v=0$.
Adapting b.gatessucks's suggestion of using
|
||||
|
|
|
This is just a problem of the choice of parameterization. Try this instead:
|
|||
|
Cosh[u/v]with both $u$ and $v$ going from -1 to 1 will do that. – Verbeia♦ Mar 15 '12 at 11:11