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 floopz

  1. F

    [SOLVED] Finding the way of doppler signal

    Subtract the received signal from the original signal (downconvert) to find the difference if they are coherent or use a long fft to find the shift. If the new signal is shifted up in frequency, it is closing (blue Doppler). If it is down in frequency is is receding (red Doppler). Try to think...
  2. F

    how to reduce program execution time in matlab

    Try running a small data set through the MATLAB profiler. This will tell you where the offending (slow) bits of code are. Often the problem is simple (not pre-allocating matrices or appending datasets in loops). MATLAB also executes datasets faster when indexing by row rather than column.
  3. F

    need to generate chirp signal

    Chirp function is x(t) = sin[2*pi(f*t*+k/2*t+phi)] set you time vector (eg. t = 0:ts:1) k is the chirp rate, f the carrier frequency and phi the initial phase (can set to 0). in MATLAB should look something like this: x = sin(2*pi(f*t*+k/2*t+phi))
  4. F

    Pulse oximeter algorithm

    Have a look at this TI application note: https://www.ti.com/lit/an/slaa274b/slaa274b.pdf It has the details for the equation and the model used to calc the SpO2 that you are after.

Part and Inventory Search

Back
Top