How to handle polynomial expansion in MATLAb

1 Ansicht (letzte 30 Tage)
Fred
Fred am 9 Jul. 2013
Dear all;
I have two vectors Z(m*1) and S(n*1) (Z is my data and S are coefficients from another formula) and I want to adjust Z values by some type of differencing like this:
H(i)=Z(i)-0.3*Z(i-1)-0.105*Z(i-2)-0.059*Z(i-3)-...
S=[0.3 0.105 0.059 ...]
I don't know how should I handle both S and Z with different dimensions? I appreciate your help

Akzeptierte Antwort

Matt J
Matt J am 9 Jul. 2013
Bearbeitet: Matt J am 9 Jul. 2013
H=filter([1,-S],0 , Z);

Weitere Antworten (0)

Kategorien

Mehr zu Polynomials finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by