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 hansmuller

  1. H

    I need to make a FIR Lowpass filter using ‘fdatool ’ in matlab

    write 'fdatool' in command window of matlab and filter design tool window opens. then you select your desired features in this window and go.
  2. H

    how to generate equal size of mfcc's?

    hi, try zero-padding the matrices. add zeros to the end of the smaller size matrice to be the same size of the other matrice. for example, add 5 more rows to the 9x15 matrice to match with the other 9x20 matrice.
  3. H

    graphical user interface in matlab

    you can use matlab's filter design tool. it is very useful.
  4. H

    graphical user interface in matlab

    you can add another button to your gui that filters your data. or you can add filtering to your existing code. if you add button, it filters the data and plots its spectrogram. you can make this code inside the button's code section.
  5. H

    graphical user interface in matlab

    write the filtering codes or call the relevant function inside the gui code. if you can be more specific we can be more helpful.
  6. H

    Speech Door Access System by controling PC

    for hardware, via the PCs serial port, you can use a relay to open the door lock. for this, of course you must set serial port on the software.
  7. H

    Problem in MPlab for building a program of PIC18f4520...

    You can set include path in Mplab menus Project > Build options
  8. H

    Problem in MPlab for building a program of PIC18f4520...

    make sure 18f4520.h file is in your include path of Mplab.
  9. H

    Problem with c programming in PIC18f4520...

    interrupt means; when pic is running its main code, when an interrupt happens, pic breaks its current work and immediately runs the interrupt routine. interrupt is programmed outside the main code. you can see many examples and definition on internet. also datasheet of pic will help you.
  10. H

    Problem with c programming in PIC18f4520...

    the code seems OK. another thing you may use; instead of if statement, you can make an interrupt routine to the switch ON. I mean you can make the switching ON an interrupt to the microcontroller.
  11. H

    Problem with c programming in PIC18f4520...

    try setting the switch ON before powering up the system. If you switch ON after a while powering up the system, the program may be couldn't be out of the display count loop.
  12. H

    help in GUI get reading from sensor via transceiver

    I am not sure whether MATLAB can read from USB port. but if you can use serial port instead, you can easily read from serial port via MATLAB.
  13. H

    Help on Full wave thyristor bridge rectifier-- control by tca785

    TCA785 is used in full wave thyristor controlled circuits in the aim of capturing zero crossings. you should trigger the thyristors at the zero-crossing points to get full wave. in the datasheet you can examine application circuits.
  14. H

    Exract speech features

    you can easily find the algorithm of the MFCC method on internet. there are so many sample codes. especially for MATLAB.
  15. H

    [SOLVED] help plz 16F877 ADC Module

    the resolution depends on your PICs ADC hardware. In this case, in 16F877, ADC is 10 bit. Then your resolution is 10bit. the values are in ADRESH and ADRESL registers. you can get further details in PICs instruction manual. It is really helpful.

Part and Inventory Search

Back
Top