On 7/29/2009 11:48:44 AM, Moe_Szyslak wrote:
==I have always struggled with the 3D plotting facilities in Mathcad, which I find quite non-intuitive. Where am I going wrong in attempting to plot a single point in space?
If it's of any help, there is a partial emulation of Maple's plottools library in the worksheet at
http://collab.mathsoft.com/read?113275,15 . You just need to copy the collapsed area named "plottools emulation" over to whatever worksheet you want and call the appropriate functions.
You can create a single point at (x,y,z)=(1,2,3) by
pt := vec2pt(stack(1,2,3))
and then entering pt into the 3D plot placeholder (setting the "disply as" element of the "general" tab in the 3D dialog box to "scatter plot")
Example attached.
Stuart