how to convert discrete to continuous domain using c2d and using for loop for Ts=sampling period
Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Ältere Kommentare anzeigen
how to convert discrete to continuous domain using c2d and using for loop for Ts=sampling period
Antworten (1)
Azzi Abdelmalek
am 21 Dez. 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)
Diese Frage ist geschlossen.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!