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 rizalafande

  1. R

    need helps to explain C++ codes

    thanks. i had now got the result of 'delta'.
  2. R

    need helps to explain C++ codes

    explain c++ actually, i would like to seek the answer for 'delta' when 'inter = 1'. as a c programmer, i know how the system computes the bitwise left shift operation ( 1 << inter ...) in 'start' and 'end' functions. the only thing that make me confuse is what is the purpose of term 'ldtogfxp'...
  3. R

    need helps to explain C++ codes

    codes in c++ hi, due to i have no knowledge about c++ at all, can anyone help me to translate below code into c languages? ====================== for (inter=0; inter<6; inter++) { start = ldtogfxp ( (long double) (inter ? -(1 << (inter - 1)) : 0) ); end = ldtogfxp ( (long double) ( - (1 <<...
  4. R

    generate image comparison for accuracy anaylsis

    At the moment, i have two different FPU architectures written in C coding. To ensure that both FPU have same accuracy, i would like to verify them by generating image analysis/comparison but unfortunately not really sure how to do that with using c coding. anyone can help me out.
  5. R

    How to perform image comparison for accuracy analysis

    At the moment, i have two different FPU architectures written in C coding. To ensure that both FPU have same accuracy, i would like to verify them by generating image analysis/comparison but unfortunately not really sure how to do that with using c coding. anyone can help me out.
  6. R

    Can C programming store data in .txt file?

    store data to .txt c programming Hi, Does C programming able to save all 'printf' data (which display in DOS window) in .txt file automatically? At the moment, i have to manually copy all 'printf' data from DOS to be saved in .txt file which i think impractical for a huge data.
  7. R

    converting decimal to binary using C codes

    converting decimal to binary in c thanks for example. anyway, i had tried to modify the codes to fit with the 36-bits but unfortunately the outputs of binary numbers only give upto 32-bits and will repeat the first four LSB bits into the last four MSB bits (bit 35 to 32). sample of modify codes...
  8. R

    converting decimal to binary using C codes

    decimal to binary in c hi, I have successfully converting the decimal to binary numbers in C (using char) but my intention is to make sure that it will convert to 12-bits binary numbers. For example, if decimal value is 10, then binary should be 000000000110 instead of only 110. Can anyone helps?
  9. R

    how to use 'long long int' or 'unsigned long int' in C prog

    long int in c hi, i got the problems to use the 'long long int' and 'unsigned long int' data types in C programming (becasue i would like to use 64bit and unsigned 32bit data in my design). when i run the simulation using Linux compiler (gcc), it is always give me an error "warning: this...
  10. R

    Returning values in C language

    Based on C codings below, how can i return 3 output values to be passed to other functions.. ========== float test1 (float x) { float a,b,c; a = x + x; b = x * x; c = (x / x) - x; return a,b,c; /* when using this style, it will only return the result of c but not together with...
  11. R

    How to use 'LN' and 'EXP' in C language

    ln in c language thanks to all the feedback. problems now have been resolved.
  12. R

    How to use 'LN' and 'EXP' in C language

    ln function in c Can anyone helps me to show how to use 'LN' and 'EXP' mathematical operations in C language? I have tried using below codes but unfortunately doesn't work. ===== #include <math.h> ..... double x (double enter) { double exit; exit = ln(enter) + exp(enter); } =====
  13. R

    Gaussian data and FIR/JPEG data generators

    Hi, I'm looking for the VHDL codes which can produce the 32-bit gaussian data and FIR/JPEG data generators to be tested on my arithmetic designs. Does anyone out there can helps me out? Many thanks.
  14. R

    Need urgently handbook for VCS-MX, SoC Encounter, PrimeTime

    Re: Need urgently handbook for VCS-MX, SoC Encounter, PrimeT Hi Diag, Yup, i already got what i want..thanks...

Part and Inventory Search

Back
Top