필터 지우기
필터 지우기

Build or update data set in a data object with for loop

조회 수: 1 (최근 30일)
Yves
Yves 2018년 5월 4일
댓글: Yves 2018년 5월 4일
Would like your advice on designing my coding structure (architecting). I am trying to simulate a state-space modeled control loop in Matlab (not Simulink). I would like all my signals in the loop to be data objects, with the physical signal being the primary property. It seems to me, in order to simulate the dynamic response of the loop, a for loop must be used to compute the local response one data point at a time, which would mean my primary property of each data object is computed one at a time. Can I do it this way, with ip being the input data object, ip.signal the dataset?
for i = 1:length(ip.signal)
x(i+1) = A.*x(i) + B.*ip.signal(i);
op.signal(i) = C.*x(i) + D.*ip.signal(i);
end
The property "signal" of output data object op is constructed point by point like that, yes or no? Or you have a more elegant way of doing it?
  댓글 수: 2
sloppydisk
sloppydisk 2018년 5월 4일
This should work fine, just make sure to preallocate your output signal and x signal before the loop. I also think you might want to add x to your output signal object, since it is also a state variable, right?
Yves
Yves 2018년 5월 4일
Thanks, Jasper. Yes, I should; x is a state variable.

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Scopes and Data Logging에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by