how to convert discrete to continuous domain using c2d and using for loop for Ts=sampling period

how to convert discrete to continuous domain using c2d and using for loop for Ts=sampling period

Answers (1)

%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.

Asked:

on 21 Dec 2014

Closed:

on 20 Aug 2021

Community Treasure Hunt

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

Start Hunting!