About 76,800 results
Open links in new tab
  1. How to convert a decimal number into fraction? - Stack Overflow

    I was wondering how to convert a decimal into a fraction in its lowest form in Python. For example:

  2. convert decimal number to fraction in javascript or closest fraction

    May 10, 2014 · So i want to be able to convert any decimal number into fraction. In both forms such as one without remainder like this: 3/5 or with remainder: 3 1/4. what i was doing is this.. …

  3. Converting a floating-point decimal value to a fraction

    Nov 14, 2020 · By "decimal", do you mean your input is a string of decimal digits and a decimal point, or do you simply mean, not integer? Note that both decimals and binary floating-point …

  4. Convert fraction to decimal in Python - Stack Overflow

    Since both Fraction and Decimal are objects in Python's standard library, the question in title implies you want to do this python - Best way to convert fractions.Fraction to decimal.Decimal? …

  5. Convert a decimal number to a fraction / rational number

    Feb 9, 2013 · What function from fraction.js should I use to convert a decimal to a fraction (for example, converting 0.003 to a fraction such as 3/1000)? I still don't know which specific …

  6. Power BI Convert Decimals to Custom Fractions - Stack Overflow

    Jan 11, 2019 · Custom Fraction = FORMAT ([My Measure], "# #/13") FORMAT function Edit: FORMAT converts numbers to text, so if you want to sum the numbers, you need to do it first, …

  7. Print number as reduced fraction in R - Stack Overflow

    Feb 18, 2011 · On my old beat-up TI-83 I can get a reduced fraction representation of a rational real number with the following syntax. .14>Frac 7/50 Is there a similar syntax, function, or …

  8. How do you convert a fraction to binary? - Stack Overflow

    Feb 13, 2011 · 1/10(decimal) = 0.0001100110011... (binary) How do I do that? Am I supposed to convert to binary and then divide? Could someone show me?

  9. Fraction to decimal in MATLAB - Stack Overflow

    How can I convert a fractional number into decimal number in MATLAB? I have written some program in MATLAB. But in the iterative process it gives all the number in fraction form but I …

  10. python - Converting decimals to fractions - Stack Overflow

    Sep 7, 2021 · I just wanted to convert a decimal to fractions in Python. I found some answers here on stackoverflow. How to convert a decimal number into fraction? I tried both the methods but …