フィルターのクリア

How to impement a delay in matab on real time signals

1 回表示 (過去 30 日間)
muwahida liaquat
muwahida liaquat 2012 年 4 月 7 日
I am working on control systems and input requires a delay of the following kinds d[k+1] in real time how can i implement a delay of this kind

回答 (1 件)

Rick Rosson
Rick Rosson 2012 年 4 月 7 日
function y = delay(x)
persistent n z
[ L, M ] = size(x);
if isempty(z)
n = ...
z = zeros(n,M);
end
if L == n
y = z;
z = x;
else
if L > n
y = [ z ; x(1:L-n,:) ];
z = x(L-n+1:L,:);
else
y = z(1:L,:);
z = [ z(L+1:n,:) ; x ];
end
end
end

カテゴリ

Help Center および File ExchangeSimulink についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by