필터 지우기
필터 지우기

simulate this using script file (time evolution)

조회 수: 2 (최근 30일)
Jeffrey Eiyike
Jeffrey Eiyike 2016년 7월 13일
답변: Div Tiwari 2016년 8월 9일
dx(t)= Bu(t)+ c(t)
I want to simulate the next state for every time steps using m-script..
x(t+1)= x(t) + Bu(t)+ c(t)
It is not working the way I want.

답변 (1개)

Div Tiwari
Div Tiwari 2016년 8월 9일
Could you elaborate on what you meant by it not working the way you want, Jeffrey? This should be quite simple to implement, but we do need to specify an initial value and index the for-loop correctly. For example, for 'N' steps:
x = zeros(1,N);
x(1) = xInitial; % Set initial value
for t = 1:N-1
% Assuming Bu and c are precomputed
x(t+1) = x(t) + Bu(t) + c(t);
end

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by