how to convert discrete to continuous domain using c2d and using for loop for Ts=sampling period
Info
This question is closed. Reopen it to edit or answer.
Show older comments
how to convert discrete to continuous domain using c2d and using for loop for Ts=sampling period
Answers (1)
Azzi Abdelmalek
on 21 Dec 2014
%Example
model1=tf(1,[1 1])
Ts=[0.01 0.05 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1]
for k=1:numel(Ts)
dmodel{k}=c2d(model1,Ts(k));
end
celldisp(dmodel)
This question is closed.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!