Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by sanbaba

  1. S

    Help me with voice recognition system project in Matlab

    Re: matlab project learn HMM(Hidden Markov Model) and GMM (Gaussian Mixture Model)
  2. S

    Problem with Gabor codes

    Re: Gabor problem Hi, h**p://www.csse.uwa.edu.au/~pk/studentprojects/raymondthai/RaymondThai.pdf h**p://www.cse.msu.edu/cgi-user/web/tech/search?ANDOR=&AUTHORID=197 h**p://www.mathworks.com/matlabcentral/fileexchange/loadCategory.do?objectType=category&objectId=131&objectName=Filtering...
  3. S

    required code of 2d convolution of image in vhdl

    latha pillai convolution Hi, search for "latha pillai" articles in google somewher in xilinx site u can get the vhdl code.... when i did my BE project i took it from there........ regards, sanbaba
  4. S

    I need a help in Speech Recognization

    buy Fundamentals of speech recognition by lawrence rabiner and Juang ISBN :81-297-0138-3 search for HMM (Hidden Markov Model) and GMM (Gaussian Mixture Model). regards, sanbaba **broken link removed**
  5. S

    Question about FFT of a real signal

    Re: DSP and Real signal i) Do overlap and save if you use convolution also. ii) Do shifting will also help you. by using sliding concept bye sanbaba
  6. S

    Interpolation (upsampling)

    There are two methods 1. between each samples add 7zeros and take LPF. 2. If u want to take interpolation for 50 samples first take fft of 64 samples by padding zeros. Consider only 33 values. add 224 zeros to it (224+257) Take ifft of 512 samples. These two methods explained in Scientist and...
  7. S

    FFT Plot of audio signal (MATLAB)

    write like this. y=wavrecord(5*11000,11000,'double'); yfft=fft(y); freqz(yfft); you'll get both the magnitude and phase. Bye sanbaba
  8. S

    motion estimation for RGB images

    One project it's there in codeproject.com i hope it's useful for you
  9. S

    Please Recommend Book on Audio/Speech

    also you can refer book by Jayant "Quantization and waveform coding" and "speech compression" and kondoz's "digital speech"
  10. S

    Looking for a FFT in C/C++

    Re: FFT in c/c++ needed // x is real coefficients // y is imaginary coefficients // By calling this function the resulting real and imaginary // values will be stored in RealArray and ImaginaryArray int main() { FFT( 1,Number1,RealArray,ImaginaryArray);// 1 for FFT...
  11. S

    What is the three step algorithm for motion estimation?

    Re: motion estimation Hi I feel this is very usefull for you, **broken link removed** Bye sanbaba
  12. S

    simulink to matlab???

    simulink is just to simulate. If you want you can use mex file based things. you can get better idea from codeproject.com Bye Sanbaba
  13. S

    Useful FFT code you can use this.

    fft(short int dir /* This computes an in-place complex-to-complex FFT x and y are the real and imaginary arrays of 2^m points. dir = 1 gives forward transform dir = -1 gives reverse transform */ short FFT(short int dir,long m,double *x,double *y) { long n,i,i1,j,k,i2,l,l1,l2...
  14. S

    filter function of MATLAB

    filter()function in matlab Hello every, one i implemented filter function of MATLAB. The filter which i designed is working for if take the entire file at a time. If i pass the file chunk by chunk it is not working properly both in C as well as MATLAB. If any one knows the reason please tell...

Part and Inventory Search

Back
Top