필터 지우기
필터 지우기

How do I use dsolve to find the solution to u'' + u = 3cos(wt) , u(0) = 0, u'(0) = 0 ?

조회 수: 1 (최근 30일)
Dinakar Chappa
Dinakar Chappa 2017년 3월 24일
답변: Walter Roberson 2017년 3월 24일
I want to say my problem is me having trouble entering the u'' and the constant w, but I am lost in general as I am fairly new to MatLab.
syms u w t
eqn = diff(diff(u)) + u == 3* cos(w*t)
dsolve(eqn)

답변 (1개)

Walter Roberson
Walter Roberson 2017년 3월 24일
syms u(t) w
du = diff(u);
eqn = diff(du) + u == 3* cos(w*t)
dsolve(eqn, u(0) == 0, du(0) == 0)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by