필터 지우기
필터 지우기

How to plot this equation if C is 4?

조회 수: 1 (최근 30일)
ken
ken 2022년 5월 9일
답변: Sam Chak 2022년 5월 9일

채택된 답변

Torsten
Torsten 2022년 5월 9일
fun = @(t,C) 5*t.^2./(t.^5+C);
t = 0:0.01:3;
C = 4;
plot(t,fun(t,C))

추가 답변 (1개)

Sam Chak
Sam Chak 2022년 5월 9일
Alternatively, you may use fplot for an overview.
fplot(@(t) (5*t.^2)./(t.^5 + 4), [-6 6])

카테고리

Help CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by