How to plot this function in matlab.
조회 수: 2 (최근 30일)
이전 댓글 표시
The expression I am trying to plot is y(t) = -bt - (3/2)b^2. I am confused on how to structure this so I can make a simple plot of the function. Any help would be greatly appreciated. Thank you
댓글 수: 0
채택된 답변
Arif Hoq
2023년 2월 11일
b=4; % specify your variable b
t=linspace(0,20,10); % time
y=-b.*t-3/2*b.^2;
plot(t,y)
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Line Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!