Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Converting float to int #8751

Closed
mariusvds opened this issue Apr 4, 2019 · 4 comments
Closed

Converting float to int #8751

mariusvds opened this issue Apr 4, 2019 · 4 comments
Labels
Type: Invalid Off topic for this repository, or a bug report determined to not actually represent a bug

Comments

@mariusvds
Copy link

mariusvds commented Apr 4, 2019

Hello world,

This week i found a bug, converting float to int delivers strange values, can't find out why.

This is the code I wrote:

float answer = 0.0;
float i = 0.0;

void setup()
{
  Serial.begin(115200);
  Serial.println("Hello World !!!");
}

void loop()
{
  while(true)
  {
    answer = pow(5.0, i);
    Serial.print("Answer: ");
    Serial.println(answer);
    if (i >= 4.0){i = 0.0;}; //preventing overflow
    int b = static_cast<int>(answer);//converting to int
    Serial.print("B: ");
    Serial.println(b);
    delay(500);
    i += 1.0;
  }
}

The output is:
Hello World !!!
Answer: 1.00
B: 1
Answer: 5.00
B: 5
Answer: 25.00
B: 24
Answer: 125.00
B: 124

Somebody who can find out what goes wrong?

Thanks

@mikaelpatel
Copy link

I think you are asking this question in the wrong place. Try the forum or stackexchange instead.

BW: looks like you are truncating the float to integer. Might what to try rounding it instead.

@per1234
Copy link
Collaborator

per1234 commented Apr 5, 2019

The issue will be apparent if you print answer with more decimal places:

Serial.println(answer, 6);

We have already documented the inexact nature of float in the Arduino Language Reference so I don't think any action is required on this.

@per1234 per1234 closed this as completed Apr 5, 2019
@per1234 per1234 added the Type: Invalid Off topic for this repository, or a bug report determined to not actually represent a bug label Apr 5, 2019
@PaulStoffregen
Copy link
Contributor

@per1234 - Perhaps the documentation could specifically mention the need to add 0.5 for converting to nearest integer? Or maybe the round() function should be documented?

@per1234
Copy link
Collaborator

per1234 commented Apr 5, 2019

Perhaps the documentation could specifically mention the need to add 0.5 for converting to nearest integer?

@PaulStoffregen good suggestion! I hadn't considered the bigger picture behind this issue. The truncation behavior when converting from floating point to integer types is a frequent cause of confusion for beginners. Since I already have a lot of outstanding PRs in the Language Reference repo that are requiring me to frequently resolve merge conflicts, I'm holding off on any submitting any new PRs to that repo for now. So I created a dedicated issue for your suggestion instead:
arduino/reference-en#579

Or maybe the round() function should be documented?

We do have an existing issue report for this:
arduino/reference-en#522
Now that I've been informed that .ino files are written in Arduino Language, rather than C++ as I had previously thought, I am warming to the idea of implementing that request, since the Arduino Language Reference is the only definitive documentation of the Arduino Language.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Type: Invalid Off topic for this repository, or a bug report determined to not actually represent a bug
Projects
None yet
Development

No branches or pull requests

4 participants