3-D plot for the function f(t)=(t,t^2,t^3) in t between 0 to 100 with matlab code

1 次查看(过去 30 天)
3-D Plotting

回答(2 个)

Steven Lord
Steven Lord 2018-10-2
Take a look at the plot3 function. If you try using that function and it doesn't work, show the code you've written and post the full text of any error or warning message you received (all the text shown in red or orange) and we may be able to offer some guidance.
  1 个评论
ASMIT GHOSH
ASMIT GHOSH 2021-10-9
t=0:1:100;
f = (t, (t.^2), (t.^3));
plot3(f);
f = (t, (t.^2), (t.^3));
Invalid expression. When calling a function or indexing a variable, use parentheses. Otherwise, check for mismatched delimiters.

请先登录,再进行评论。


Puttam Reddy Reshikesh Reddy
t=0:1:100;
f=(t,t.^2,t.^3);
plot3(f);
%Question: Draw the 3-D plot for the function f(t)=(t, t
2, t
3), where 0  t  100.

类别

Help CenterFile Exchange 中查找有关 Mathematics 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by