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 Shug

  1. S

    in ofdma transmitter for lte downlink

    The x-axis in the second diagram refers to time (in the unit of OFDM symbols), and the y-axis is the subcarrier index. If a user is assigned a set of squares in the second diagram, it means that that user can transmit on those subcarriers in that symbol. As an example, let user 1 be assigned to...
  2. S

    How to find out the power (not energy) from the spectrum using Parseval's theorem?

    I am not sure what you are asking here. Power is something you measure across frequency, or across time; energy of the signal is across frequency/time. As far as the cos function goes, if you integrate a dirac delta function, the integral is one, not infinity.
  3. S

    C file to Matlab file

    Not sure I understand your question, but MATLAB does have the right color-coding for .c files. You need to run anything you would run in C though by first making a new C file and then editing it, then compiling it into a mex file and then running it. the extension on mex files is .mex, which is...
  4. S

    designing a moore fsm for even no of zeros and odd no of ones

    You can do this with 4 states: even #0's/even #1's, even #0's/odd #1's, odd #0's/even #1's, and odd #0's/odd #1's. From there you can figure out the state transitions and outputs.
  5. S

    I and Q Samples QPSK and 16 QAM Constellation Plotting

    This is straightforward. If you load the data into the variables "I" and "Q", just type "plot(complex(I,Q))" to get the constellation diagram. In Excel, just do some scatter plot with your x-axis as I and your y-axis as Q, as you said, and you should see it there as well.
  6. S

    monte carlo simulation to demonstrate the performance of Coordinated beamforming.

    You need to: 1. generate random bits and store them 2. modulate them (QPSK) 3. do whatever transmit MIMO processing you have 4. send them across a channel 5. demodulate them (QPSK demod) 6. compare your demodulated bits to transmit bits; BER from monte carlo is given by...
  7. S

    Nosie in FSK constellation

    Complex AWGN affects both amplitude and phase/frequency. Remember that when you add complex Gaussian noise, the value you add is, in fact, complex; thus, both values will change. If, for example, you added only real AWGN, you would see only the real component in the signal change, so the...
  8. S

    find orthogonal vectors

    This is not correct... any two orthogonal vectors in the plane that is orthogonal to the vector will suffice. And you can use Gram-Schmidt; just pick any two random vectors and apply the Gram-Schmidt process to get 3 mutually orthogonal vectors.
  9. S

    [SOLVED] do we use pilot carrier in Digital Communication ?

    Why are you looking for mathematical literature on this topic? Standards specify the pilots, and they are used for estimation. I doubt there are many textbooks that include channel error estimation from pilots unless they are standards books. If you want to find more information on channel...
  10. S

    OFDM related question

    I am not sure I understand the passband part exactly, but generally how OFDM works is this: you take the time domain signal and then do some sort of pulse shaping (say, root-raised cosine with a rolloff factor of 1/2). I am not sure what kind of pulse shaping occurs in OFDM signals in real...
  11. S

    [SOLVED] do we use pilot carrier in Digital Communication ?

    Not sure what pilots are used for in analog communication, but they are regularly used in digital communication for the purposes of channel estimation, timing/frequency offset estimation, sampling clock offset estimation, etc. A pilot signal in digital communication is a known value at both the...
  12. S

    find orthogonal vectors

    You can use the Gram-Schmidt method: https://en.wikipedia.org/wiki/Gram%E2%80%93Schmidt_process Basically, select any 2 random vectors and apply the Gram-Schmidt process to get a set of 3 orthogonal vectors. There is probably an easier method, but that one is straightforward from what I can...
  13. S

    Most appropriate signal processing algorithm for this problem

    I do not think a Kalman filter would be appropriate for this problem; I have not worked with them much, but doing a quick reading on them says that they are mostly used for updating an estimate over time, which isn't really your goal here. Offhand, I think a cross-correlator with a threshold...
  14. S

    Advantage of matched filter over correlator if there is any?

    I think matched filters are mainly used for ease of analysis; they make more sense from a filtering/convolutional perspective. Because both yield the same result and both have the same computational complexity, there is not much in implementation/performance that changes between the two. Also...

Part and Inventory Search

Back
Top