필터 지우기
필터 지우기

question about fplot function

조회 수: 3 (최근 30일)
kris Holm
kris Holm 2021년 1월 4일
댓글: kris Holm 2021년 1월 4일
hey! i have a question about fplot.
I am stuck with this problem since many hours. I solve a differential equation but i have to plot it but it dosent work. can someone please help me what im doing wrong?
my code looks like this.
syms f(x)
Dy = diff(y,x,1);
DDy = diff(y,x,2);
ysol = dsolve(DDy + 3*Dy == 12*x - 5, y(0) == 1,Dy(0) == 0)
fplot(f(x))
xlim([-2 10])

답변 (1개)

Mischa Kim
Mischa Kim 2021년 1월 4일
Hi Kris,
syms y(x)
Dy = diff(y,x,1);
DDy = diff(y,x,2);
ysol = dsolve(DDy + 3*Dy == 12*x - 5, y(0) == 1,Dy(0) == 0)
fplot(ysol)
xlim([-2 10])
  댓글 수: 1
kris Holm
kris Holm 2021년 1월 4일
Thank you verry much!

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by