cmos babe
Full Member level 4
walters said:aren't the filters IIR and FIR already designed from the GUI all u do it adjust the GUI's parameters from the GUI interface
The IIR and FIR filters are already done for us and designed already right? all the hardwork is done for us the code has been writen?
The GUI interface can changed or modify the filter coeffecients without programming in code just using the mouse and GUI interface?
What does the vector variables do to the filters coeffecient?
Yes you only specify your frequency response requirements by adjusting the options in the GUI to generate the proper coefficients. That's called filter design. But after the coefficients are generated you may need to use them in the workspace. For example let's say you designed (generated coefficients) of a low pass filter and you want to filter an audio file. So first you open the wav file using a MATLAB wavread command and you store the sound samples of the wav in a vector named X , and after you designed the LP filter you named the vector that contains the filter coefficients H , now you can obtain the new filtered signal using convolution by using this command y = conv(X,H)