Can you tell me how you solved the ode45 for equations of motion?
2 次查看(过去 30 天)
显示 更早的评论
Can you tell me how you solved the ode45 for equations of motion?
NST = 4;
MPF = length(NST);
Xg(t) = [.any values ok.] % Matrix size of 1880 X 1
x"(t) + 3.797*x'(t) + 1442*x(t) = MPF*Xg(t)
can you give me the code please.
2 个评论
Walter Roberson
2021-9-28
NST is a scalar, so length(NST) is 1. Is that what you wanted? Or did you mean that MPF is to be length 4 ?
Are the Xg(t) values intended to be constants?
回答(1 个)
Walter Roberson
2021-9-28
ode45() cannot deal with those kinds of systems. Runge-Kutta solvers assume that the given equations have continuous first and second derivatives, but your Xg are impulse functions and so do not have continuous first derivatives.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Calendar 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!