DSPRelated.com
Forums

Anybody using Scilab?

Started by JBK September 5, 2003
"Harmonic Software Inc." wrote:
> > You might also look at O-Matrix, (http://www.omatrix.com). It's not free, > but it's quite inexpensive and provides support and other commercial > benefits. >
A quick look at the site didn't tell me if it's {zero}-Matrix or {oh}-Matrix. I hope for the former, and that it allows zero-based arrays. Jerry -- Engineering is the art of making what you want from things you can get. �����������������������������������������������������������������������
<Filtering with Scilab>

| x = some signal...
| B = [1 2 3];
| A = [4 5 6];
| y = filter(B,A,x);

z=poly(0,'z');
N=1+2/z+3/z**2
D=4+5/z+6/z**2
H=N./D
H=syslin('d',H);
y=flts(x,H);


Thanks!

I did try the dedicated Scilab newsgroup, but it appears to have very few
readers.

/Jesper

"Curl" <Mr.Bilou@microsoft.fr> wrote in message
news:3f5c2f76$0$10404$626a54ce@news.free.fr...
> <Filtering with Scilab> > > | x = some signal... > | B = [1 2 3]; > | A = [4 5 6]; > | y = filter(B,A,x); > > z=poly(0,'z'); > N=1+2/z+3/z**2 > D=4+5/z+6/z**2 > H=N./D > H=syslin('d',H); > y=flts(x,H); > >