clear all, close all, clc
w=2*pi;
zeta=0.25;
A=[0 1;-w^2 -zeta];
dt=0.01;
T=10;
x0=2;
[t,x] = ode45(@(t,x) A*x, 0:dt:T, x0);
plot(t, x(:,1));
i am getting error as
Error in ode45 (line 12)
[t,x] = ode45(@(t,x) A*x, 0:dt:T, x0);
i dont know what wrong i did here, if any body spoted out it will be very helful. Thank you.

 채택된 답변

Star Strider
Star Strider 2022년 8월 3일

0 개 추천

The principal problem appears to be having 2 differential equations and 1 initial condition.
Try this —
w=2*pi;
zeta=0.25;
A=[0 1;-w^2 -zeta];
dt=0.01;
T=10;
x0=[0 2]; % Add Second Initial Condition
[t,x] = ode45(@(t,x) A*x, 0:dt:T, x0);
t = 1001×1
0 0.0100 0.0200 0.0300 0.0400 0.0500 0.0600 0.0700 0.0800 0.0900
x = 1001×2
0 2.0000 0.0200 1.9911 0.0398 1.9743 0.0594 1.9498 0.0788 1.9177 0.0978 1.8781 0.1163 1.8312 0.1344 1.7772 0.1518 1.7163 0.1687 1.6488
plot(t, x(:,1));
Make appropriate changes to get the desired result.
.

댓글 수: 2

Dinesh Durai
Dinesh Durai 2022년 8월 6일
Thank you
Star Strider
Star Strider 2022년 8월 6일
As always, my pleasure!

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

추가 답변 (0개)

카테고리

제품

릴리스

R2022a

질문:

2022년 8월 3일

댓글:

2022년 8월 6일

Community Treasure Hunt

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

Start Hunting!

Translated by