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

조회 수: 5 (최근 30일)
Ravi Prakash
Ravi Prakash 2018년 10월 2일
댓글: ASMIT GHOSH 2021년 10월 9일
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
Puttam Reddy Reshikesh Reddy 2021년 10월 2일
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