Build or update data set in a data object with for loop
조회 수: 2 (최근 30일)
이전 댓글 표시
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
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?
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Dynamic System Models에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!