4th order differential equation

조회 수: 2 (최근 30일)
Amarbayar Jugdernamjil
Amarbayar Jugdernamjil 2020년 12월 3일
편집: Ameer Hamza 2020년 12월 3일
Hello, Can anyone help me with solving below and how to get "y" is as following:
EI*(d^4v/dx^4) +P*z= 0
Author said that using Mathlab, following equation is obtained.
y= - Pz^5/120*EI+C1*z^3/6+C2*z2/2+C3+C4

답변 (1개)

Ameer Hamza
Ameer Hamza 2020년 12월 3일
편집: Ameer Hamza 2020년 12월 3일
If you have symbolic toolbox, then try this
syms v(z) P EI
eq = EI*diff(v,4) == -P*z
v = dsolve(eq)
Result from live editor
Note that, I assumed in your question, d^4v/dz^4

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by