third order differential equation

Hi I,m new to matlab and I want solve this differential equation x(3)+ k/c x(2)+ k/m x(1)=0
m=50 c=50 k=1000
Any help would be great. Thanks in advance, leili

답변 (2개)

Azzi Abdelmalek
Azzi Abdelmalek 2013년 12월 7일

0 개 추천

Save this function as myfcn.m
function dx=myfcn(t,x)
dx=zeros(3,1)
m=50;
c=50 ;
k=1000;
dx(1)=x(2);
dx(2)=x(3);
dx(3)=(-k/c)*x(3)-(k/m)*x(2);
Call the function myfcn
tspan=[0 10];
x0=[0.1;0.2;0.3] % Initial conditions
[t,x]=ode45(@myfcn,tspan,x0)
plot(t,x)
Venkata Sai Ram Aripirala
Venkata Sai Ram Aripirala 2018년 11월 9일

0 개 추천

How to write f''' + f'f'' = o in matlab

댓글 수: 3

madhan ravi
madhan ravi 2018년 11월 9일
ask a separate question @Venkata
eqn ( f''' + f*f''== 0 ) Is this the foemat to put in Matlab
madhan ravi
madhan ravi 2018년 11월 9일
no, I mean post a separate question because this is not related to the original question

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

카테고리

태그

질문:

2013년 12월 7일

댓글:

2018년 11월 9일

Community Treasure Hunt

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

Start Hunting!

Translated by