Page 4 of 6

Re: Filter construction kit

Posted: Sat Feb 23, 2013 9:58 pm
by infuzion
MyCo wrote:Yeah, but how about you? Try writing in a foreign language... try German :mrgreen:
I lived outside Keiserslautern for 1.5 years, went to Italy for 3 months, & when I came back, I could not even count 1-10 in German any more. Perhaps it is more likely I found more friendly Italian girls in 3 months than I did finding German girls than the language difficulties...

Re: Filter construction kit

Posted: Sat Feb 23, 2013 11:16 pm
by tester
And what girls and programming have in common?
Nothing :-)
And that why programmers are so lonely :-D

Re: Filter construction kit

Posted: Sun Feb 24, 2013 12:36 am
by MyCo
infuzion wrote:Perhaps it is more likely I found more friendly Italian girls in 3 months than I did finding German girls than the language difficulties...


Yeah, friendly German girls are hard to find... even for Germans :mrgreen:

Documentation Update
- Added Chapter Filter response
- Added Chapter Higher order filters
- Small changes here and there, to match the new chapters

Downloads are in the first post.

Re: Filter construction kit

Posted: Sun Feb 24, 2013 1:15 am
by tester
I'm curious how many ladies are working with SM/FS - are there any stats on that? ;-)

Re: Filter construction kit

Posted: Sun Feb 24, 2013 3:11 pm
by tor
Tester: I'm curious how that is relevant to this filter construction kit...

Off topic maybe?

MyCo: I really like your initiative here. Good work :D

Re: Filter construction kit

Posted: Sun Feb 24, 2013 5:38 pm
by tester
Inf started :-) But yes and no. In terms of irrelevant data - offtopic. In terms of softening the mood - a process. Don't you see how hard MyCo works on it?

Re: Filter construction kit

Posted: Sun Feb 24, 2013 6:46 pm
by tor
Ah.. sorry. Did not notice until now that it was not you that brought up the female topic. Talk about lack of communication skills :P

Thats me ;)

Re: Filter construction kit

Posted: Sun Feb 24, 2013 6:54 pm
by infuzion
tor wrote:Ah.. sorry. Did not notice until now that it was not you that brought up the female topic. Talk about lack of communication skills
Full circle: Women tend to be more communication-oriented. Men more results-oriented. Most programmers are men, therefore most programs have crappy documentation, since men are more worried about getting it to work, rather than telling people how it works & why they need it.

So, MyCo needs a geeky girlfriend to help with his .osm/.fsm help files & to blog for him ;)

Re: Filter construction kit

Posted: Sun Feb 24, 2013 7:22 pm
by tor
Infuzion: Good conclution :)

Back to the filter topic. Is it possible to make a biquad filter in the Ruby component?

Code: Select all

streamin in;
streamin b0;
streamin b1;
streamin b2;
streamin a1;
streamin a2;
streamout out;

float wn,wn1,wn2;

wn = in - wn1*a1 - wn2*a2;
out = wn*b0 + wn1*b1 + wn2*b2;

wn2 = wn1;
wn1 = wn;


I have hard time wrapping my head around the time domain when working with frames. If anyone have a example it would be fantastic. The example at page 200 in the user manual just confuse and makes me think it is impossible or very complex :/

*Edit:
The coeffs would be fed by an array from another Ruby component like the one MyCo made an example of already. Exept I guess it would be more rational to use the Ruby V connector for tha array to keep the double precision.

Re: Filter construction kit

Posted: Sun Feb 24, 2013 8:44 pm
by infuzion
Ruby is not good for real-time audio processing. Another "documentation" failure on Outsim's part?