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 superkar

  1. S

    coding for sdr please help

    what coding procedure?
  2. S

    LTE-matlab-problem-BER

    post code on pastebin and paste that link here and I'll see if i can help!
  3. S

    which encoder to be used

    well since you have 80% zeros, off the top of my head Run Length Encoding seems to be a good idea.... check this out: Run-length encoding - Wikipedia, the free encyclopedia
  4. S

    please help with this code...i need to compile this..can anyone help..

    check the code for syntax errors. you probably are missing a semicolon or a closing bracket.
  5. S

    Need help on Reed Solomon Code written in JAVA

    what have you done so far?
  6. S

    OpenCV and Codeblocks problem

    your first program ran, so i assume you've setup opencv properly. post your code to pastebin or codepad, and post the link here.
  7. S

    MATLAB command vitdec

    is 't' your trellis? and what 'tb' are you using? and since you're essentially doing a bpsk demod with pskdemod(b2,2), try doing a slice to implement hard decision bpsk demod (demodout = (b2>0) ), or use b3 = real(b3) in your code.. post the answers you find, and we'll discuss further.
  8. S

    how to create a kernel of 3 matrices in opencv?

    specifics please.. how have you "converted" the images? is it just append and linearize (eg, in matlab, x_vec = x_mat(:).') ? and what exactly do you mean by "combine"?
  9. S

    What do I do to make MATLAB use the CPU optimally?

    well one thing I can think of off the top of my head is to goto the task manager, matlab process, and set priority as high or realtime, and assign an affinity to the process. although I do not recommend it. Windows is multitasking, and will assign as much cpu as required to the process (the...
  10. S

    What do I do to make MATLAB use the CPU optimally?

    30% cpu is probably ideal for your system. it's best not to mess with it, particularly if it's windows you're running on (i'm assuming you do).
  11. S

    [SOLVED] Help me plot lollipop figure in Matlab

    Re: sos please a) I'm assuming you mean a stem plot.. x = [1,-2,0,3,0,2,-1]; n = -3:3; stem(n,x); b) type "help conv" in matlab console. c) follow steps in a).

Part and Inventory Search

Back
Top