Unable to solve exercise using duffing equation

2 次查看(过去 30 天)
The first part were M1=M2=0, I can't introduce the initial values for x1(0=Vector[ 0.1:0.1:2] the code that I used is:
f=@(t,x)[x(2);x(1)-2*x(1)^3];
x1_cond=0.1:0.1:2;
x2_cond=0;
timespan=0:0.001:2;
[t,x]=ode45(f,timespan,[x1_cond;x2_cond]);
plot(t,x)
But there is a error for the initial conditions:
Error using vertcat
Dimensions of arrays being concatenated are not consistent.
Please help me I am new using Matlab

采纳的回答

darova
darova 2020-2-16
Where is blue part?
You should use for loop to calculate for different γ
gamma = 0.1:0.1:2;
for i = 1:length(gamma)
x1_cond=gamma(i)
% ...
end
  1 个评论
Maria Cuellar
Maria Cuellar 2020-2-16
The blue part is cancelled because, It says that assume m1=m2=0 so I canceled the terms,

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Mathematics 的更多信息

产品


版本

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by