【发布时间】:2018-09-25 00:47:13
【问题描述】:
我想使用以下代码绘制 3D 曲面 ((e^-t)sint,(e^-t)cost,1)。
x=(exp(-t))*sin(t); y=(exp(-t))*cos(t); z=1;
fplot3(x,y,z)
我收到此错误消息:
Error using fplot3 (line 46)
Expected input to be one of these types:
function_handle, sym
Instead its type was double.
【问题讨论】:
标签: matlab matlab-figure matlab-guide