Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. How to avoid floating point problems?

How to avoid floating point problems?

Scheduled Pinned Locked Moved Solved General and Desktop
15 Posts 4 Posters 1.4k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M mhn2
    2 Aug 2023, 08:18

    Hi!

    In my application, I get a floating point number from the user, store it in the memory, and then later I will save it as a number in a json file.

    The problem is somewhere in this process the floating part gets changed. (For example when the input is 13.23 the number written in the json file is 13.229999542236328)

    I understand where is the problem coming from (computers saving numbers in base 2 but the input being in base 10 and etc.)

    Luckily when I read the json file back in my own application, the problem cancels itself and it will show 13.23 to the user. But this json file is meant to be used in other applications as well and I can't be sure that it won't also be a problem there.

    Is there a way, for me to store the number in the memory and to the json file, and be sure that the number written in the json file is the exact same number in base 10 as the number that was the input?

    (I am using a QLineEdit to get the number, but I can't save the number as a string in the final json)

    A Offline
    A Offline
    Axel Spoerl
    Moderators
    wrote on 2 Aug 2023, 08:23 last edited by
    #3

    @mhn2
    Hi!
    Please share a simple reproducing code snippet, to show how the user input ends up in the JSON file. Without that, it's hard to guess where the problem is.
    Cheers
    Axel

    Software Engineer
    The Qt Company, Oslo

    1 Reply Last reply
    2
    • M Offline
      M Offline
      mhn2
      wrote on 2 Aug 2023, 08:50 last edited by
      #4

      @JonB
      I am fine with storing the number as a string. But how can I tell QJsonDocument to use my string as a number, without converting it to a double first? Should I use a custom json parser instead?

      @Axel-Spoerl
      For sake of avoiding confusion I'm only including the related parts of the code and renaming variable names to their type.

      // Some where in the dialogs constructor
      ui->lineEdit->setValidator(new QDoubleValidator());
      
      // Some where in a slot
      float value = m_ui->lineEdit->text().toFloat();
      
      // Some where in the saving json process:
      QJsonObject json;
      json["r"] = value;
      // ...
      QJsonDocument document(json);
      QByteArray data = document.toJson();
      

      These are currently the only places the value gets read and used.

      When the value of the lineEdit is 13.23, the json in the byte array says:

      {
        "r": 13.229999542236328,
        // ...
      }
      
      J J 3 Replies Last reply 2 Aug 2023, 09:06
      0
      • M mhn2
        2 Aug 2023, 08:50

        @JonB
        I am fine with storing the number as a string. But how can I tell QJsonDocument to use my string as a number, without converting it to a double first? Should I use a custom json parser instead?

        @Axel-Spoerl
        For sake of avoiding confusion I'm only including the related parts of the code and renaming variable names to their type.

        // Some where in the dialogs constructor
        ui->lineEdit->setValidator(new QDoubleValidator());
        
        // Some where in a slot
        float value = m_ui->lineEdit->text().toFloat();
        
        // Some where in the saving json process:
        QJsonObject json;
        json["r"] = value;
        // ...
        QJsonDocument document(json);
        QByteArray data = document.toJson();
        

        These are currently the only places the value gets read and used.

        When the value of the lineEdit is 13.23, the json in the byte array says:

        {
          "r": 13.229999542236328,
          // ...
        }
        
        J Offline
        J Offline
        JonB
        wrote on 2 Aug 2023, 09:06 last edited by
        #5

        @mhn2 said in How to avoid floating point problems?:

        But how can I tell QJsonDocument to use my string as a number

        You cannot! Either you store a number, in which case JSON formats the output, or you store it as a string, in which case you do, but then the reading program must be prepared to accept a string and convert to number.

        Your code looks as good as it gets. You have the two choices I listed in my first reply.

        1 Reply Last reply
        0
        • M mhn2
          2 Aug 2023, 08:50

          @JonB
          I am fine with storing the number as a string. But how can I tell QJsonDocument to use my string as a number, without converting it to a double first? Should I use a custom json parser instead?

          @Axel-Spoerl
          For sake of avoiding confusion I'm only including the related parts of the code and renaming variable names to their type.

          // Some where in the dialogs constructor
          ui->lineEdit->setValidator(new QDoubleValidator());
          
          // Some where in a slot
          float value = m_ui->lineEdit->text().toFloat();
          
          // Some where in the saving json process:
          QJsonObject json;
          json["r"] = value;
          // ...
          QJsonDocument document(json);
          QByteArray data = document.toJson();
          

          These are currently the only places the value gets read and used.

          When the value of the lineEdit is 13.23, the json in the byte array says:

          {
            "r": 13.229999542236328,
            // ...
          }
          
          J Offline
          J Offline
          J.Hilk
          Moderators
          wrote on 2 Aug 2023, 09:06 last edited by
          #6

          @mhn2 try

          json["r"] = QString::number(value, 'f', 2);
          

          Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct


          Q: What's that?
          A: It's blue light.
          Q: What does it do?
          A: It turns blue.

          J 1 Reply Last reply 2 Aug 2023, 09:08
          0
          • J J.Hilk
            2 Aug 2023, 09:06

            @mhn2 try

            json["r"] = QString::number(value, 'f', 2);
            
            J Offline
            J Offline
            JonB
            wrote on 2 Aug 2023, 09:08 last edited by
            #7

            @J-Hilk QString::number() returns a string, so it will be stored as a string, which the OP says he does not want....

            1 Reply Last reply
            0
            • M mhn2
              2 Aug 2023, 08:50

              @JonB
              I am fine with storing the number as a string. But how can I tell QJsonDocument to use my string as a number, without converting it to a double first? Should I use a custom json parser instead?

              @Axel-Spoerl
              For sake of avoiding confusion I'm only including the related parts of the code and renaming variable names to their type.

              // Some where in the dialogs constructor
              ui->lineEdit->setValidator(new QDoubleValidator());
              
              // Some where in a slot
              float value = m_ui->lineEdit->text().toFloat();
              
              // Some where in the saving json process:
              QJsonObject json;
              json["r"] = value;
              // ...
              QJsonDocument document(json);
              QByteArray data = document.toJson();
              

              These are currently the only places the value gets read and used.

              When the value of the lineEdit is 13.23, the json in the byte array says:

              {
                "r": 13.229999542236328,
                // ...
              }
              
              J Offline
              J Offline
              J.Hilk
              Moderators
              wrote on 2 Aug 2023, 09:09 last edited by
              #8

              @mhn2 said in How to avoid floating point problems?:

              @JonB
              I am fine with storing the number as a string

              I read this as storing it in the json file as string


              Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct


              Q: What's that?
              A: It's blue light.
              Q: What does it do?
              A: It turns blue.

              J 1 Reply Last reply 2 Aug 2023, 09:12
              0
              • J J.Hilk
                2 Aug 2023, 09:09

                @mhn2 said in How to avoid floating point problems?:

                @JonB
                I am fine with storing the number as a string

                I read this as storing it in the json file as string

                J Offline
                J Offline
                JonB
                wrote on 2 Aug 2023, 09:12 last edited by
                #9

                @J-Hilk
                The whole point of this conversation is that the OP knows he can store "13.23" so it outputs like that to the file. Which will be read as a string. Which may not be right for the receiving program. He wants it to output 13.23 to the file. Which as he has discovered is not going to happen....

                J 1 Reply Last reply 2 Aug 2023, 09:19
                0
                • M Offline
                  M Offline
                  mhn2
                  wrote on 2 Aug 2023, 09:15 last edited by
                  #10

                  Well it seems like I either have to accept the floating point problem or use strings to store the number in json.

                  I will discuss this with my other team members and settle on one of these.

                  Thanks to everyone (especially JonB) for helping!

                  J 1 Reply Last reply 2 Aug 2023, 09:18
                  0
                  • M mhn2 has marked this topic as solved on 2 Aug 2023, 09:15
                  • M mhn2
                    2 Aug 2023, 09:15

                    Well it seems like I either have to accept the floating point problem or use strings to store the number in json.

                    I will discuss this with my other team members and settle on one of these.

                    Thanks to everyone (especially JonB) for helping!

                    J Offline
                    J Offline
                    JonB
                    wrote on 2 Aug 2023, 09:18 last edited by
                    #11

                    @mhn2
                    My inclination is to store it as a number, and accept the precision. It should not be your job to convert to strings when it's a number. I think you can assume that if (Qt) JSON outputs 13.23 this way then any other JSON reader will be convert the 13.2299... back in just the same way. I imagine this is anticipated/standard in JSON data numeric transfer, else everyone else would come up against this issue.

                    M 1 Reply Last reply 2 Aug 2023, 09:25
                    0
                    • J JonB
                      2 Aug 2023, 09:12

                      @J-Hilk
                      The whole point of this conversation is that the OP knows he can store "13.23" so it outputs like that to the file. Which will be read as a string. Which may not be right for the receiving program. He wants it to output 13.23 to the file. Which as he has discovered is not going to happen....

                      J Offline
                      J Offline
                      J.Hilk
                      Moderators
                      wrote on 2 Aug 2023, 09:19 last edited by
                      #12

                      @JonB I seriously fail to conclude that from what was written so far.

                      Anyway there's still the option of post processing.

                      Save everything as a String, Mark/Store the stringyfied numbers in a list. parse the previously written json file into memory, remove "from marked string/numbers, save the file back.


                      Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct


                      Q: What's that?
                      A: It's blue light.
                      Q: What does it do?
                      A: It turns blue.

                      1 Reply Last reply
                      0
                      • J JonB
                        2 Aug 2023, 09:18

                        @mhn2
                        My inclination is to store it as a number, and accept the precision. It should not be your job to convert to strings when it's a number. I think you can assume that if (Qt) JSON outputs 13.23 this way then any other JSON reader will be convert the 13.2299... back in just the same way. I imagine this is anticipated/standard in JSON data numeric transfer, else everyone else would come up against this issue.

                        M Offline
                        M Offline
                        mhn2
                        wrote on 2 Aug 2023, 09:25 last edited by
                        #13

                        @JonB
                        Yes it is very likely that the application that will read the json will have the same precision problems, however it might be better to not risk it. Whether or not I should take this risk is something I'm going to have to discuss.

                        J 1 Reply Last reply 2 Aug 2023, 09:38
                        0
                        • M Offline
                          M Offline
                          mhn2
                          wrote on 2 Aug 2023, 09:37 last edited by
                          #14

                          @J-Hilk
                          This process can be complicated (For example if two different parts of the json are using the same property name, or if custom user data is getting stored as string)

                          I think it would be easier to use a custom parser instead than to do this.

                          1 Reply Last reply
                          1
                          • M mhn2
                            2 Aug 2023, 09:25

                            @JonB
                            Yes it is very likely that the application that will read the json will have the same precision problems, however it might be better to not risk it. Whether or not I should take this risk is something I'm going to have to discuss.

                            J Offline
                            J Offline
                            JonB
                            wrote on 2 Aug 2023, 09:38 last edited by JonB 8 Feb 2023, 10:03
                            #15

                            @mhn2
                            Certainly you should discuss. But I believe you are laboring under a misunderstanding/assumption here. You are thinking if you can get the number 13.23 or the string "13.23" into the file that will make it so when the reader fetches it it will convert those digits which make up a string (even if it's stored as a 13.23 number the JSON will still have to convert string to number when it reads it) to exactly the binary, floating point representation of 13.23. But it won't, because (I believe) you are showing that the IEEE binary representation of 13.23 simply is 13.229999542236328, and that's as close as you going to get whatever you do.

                            1 Reply Last reply
                            1

                            12/15

                            2 Aug 2023, 09:19

                            • Login

                            • Login or register to search.
                            12 out of 15
                            • First post
                              12/15
                              Last post
                            0
                            • Categories
                            • Recent
                            • Tags
                            • Popular
                            • Users
                            • Groups
                            • Search
                            • Get Qt Extensions
                            • Unsolved