Error graphing a VVF
8 次查看(过去 30 天)
显示 更早的评论
I am trying to graph this VVF but it saying "Expected input to be one of these types: function_handle, sym Instead its type was double." What am I doing wrong?
syms t
x = (exp(-t))*sin(t)
y = (exp(-t))*cos(t)
z = 1
fplot3(x, y, z, [0, pi])
采纳的回答
Star Strider
2022-2-9
The ‘z’ function needs to be defined as symbolic. Without that provision, fplot3 sees it as a double, not a symbolic constant (which is what you want it to see).
Add that ...
syms t
x = (exp(-t))*sin(t)
y = (exp(-t))*cos(t)
z = sym(1)
fplot3(x, y, z, [0, pi])
... to get what I assume is the desired result.
.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Calculus 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



