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 Biruntha

  1. B

    Create simulink block using existing matlab files

    I defined these denoise,lfcc,vqext function in separate matlab file. should i need to create separate interpreted MATLAB Function for each function? Fm = 100;%length of Frames excursion framelnc = 100;%length of Frames excursion Fn = 256;%length of Frames sampling frequency 12.500kHz, frame...
  2. B

    Create simulink block using existing matlab files

    Hi, I developed a system for signal processing in matlab.It contains lot of m-files. Now i want to create simulink block using that matlab files. and get the output value(string) in simulink enviorment. how can i do this ?
  3. B

    Difference between Linear Frequency Cepstral Coefficients and Mel-frequency cepstral

    Difference in performance of speech recognition using the two methods???
  4. B

    Difference between Linear Frequency Cepstral Coefficients and Mel-frequency cepstral

    Can anyone give brief explanation about Linear Frequency Cepstral Coefficients and Mel-frequency cepstral coefficients?. Also what is the difference between them? Advantages of LFCC over MFCC? Thankyou
  5. B

    Calculate the deltas of a sequence

    Here is the code i found to Calculate the deltas of a sequence. Can anyone tell what is the purpose of doing this? explain the code? function d = deltas(x, w) % D = deltas(X,W) Calculate the deltas (derivatives) of a sequence % Use a W-point window (W odd, default 9) to calculate deltas...
  6. B

    POTSBAND Design filter

    Hi, Can anyone give introduction about POTSBAND Design filter? and what the purpose of this filter? Thankyou
  7. B

    LFCC (Linear Frequency Cepstral Coefficients)

    It is used to extract the features in audio signal. It has steps Signal Normalization, Compute FFT power spectrum, Compute autoregressive model analysis, Convert LPC to cepstra , Apply DCT and Convert to cepstra, Apply lifter to matrix of cepstra, Calculate the deltas of a output mel sequence ...
  8. B

    autoregressive model analysis

    thankyou for your rly , can you suggest some usefull links about this?
  9. B

    Apply bandpass filter for audio

    Thankyou for your reply. I read about linear filter banks but i couldn't understand because i'm new to signal processing area. can you give further explanation?
  10. B

    Apply bandpass filter for audio

    Hi, what is narrow banded linear-scale bandpass filters?please give brief explanation Thankyou
  11. B

    signal normalization

    I found this code to normalize. please explain how it works as steps. if std(signal) < 1.0e-7 signal= signal- mean(signal); % neutralization else signal= signal- mean(signal); % neutralization signal= signal/ std(signal); % normalization Thankyou
  12. B

    autoregressive model analysis

    Hi, can anyone briefly explain why we need to do autoregressive model analysis for audio files? give some introduction to autoregressive model analysis?
  13. B

    signal normalization

    I'm looking for digital audio data
  14. B

    signal normalization

    Hi, can anyone explain briefly what is signal normalization? why we need to normalization a signal?
  15. B

    Generating codebook with MFCC feature extraction

    In signal processing, i did feature extraction using MFCC. then use kmeans(k=6) clustering technique to generate the code-book.so i got 6 rows for each frame of data. but while testing i got 20 rows for each frame of data. because In Mel Frequency Warping, the number of mel cepstral...

Part and Inventory Search

Back
Top