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!