Golang : Converting a negative number to positive number
Helping out a friend here to figure out why her totalizer formula is spitting out incorrect result. Apparently, what she wanted to achieve is to convert a negative number to positive number so that her totalizer formula will calculate properly.
According to her co-workers, there are times when the field instrument will pump out negative number (flow rate), but it should be assumed to be a positive number and the numbers from a few measurement instruments have to be added up.
Sometimes, the simplest thing can be hardest to spot and we just assume the final calculation is correct. Writing this down as a reminder on how to convert a negative number to positive number properly with math.Abs()
function.
Not going to show you the actual formula in totaling up the flow rates, but a simple example will do.
Here you go!
package main
import (
"fmt"
"math"
)
func main() {
total := 1 + 1 + (-1)
fmt.Println("Total : ", total)
correctTotal := 1 + 1 + math.Abs(-1) // convert negative 1 to positive
fmt.Println("Correct total with absolute : ", correctTotal)
}
Output:
Total : 1
Correct total with absolute : 3
See also : Golang : Calculate BMI and risk category
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+17.1k Golang : Covert map/slice/array to JSON or XML format
+15.2k JavaScript/JQuery : Detect or intercept enter key pressed example
+15.3k Golang : Get all local users and print out their home directory, description and group id
+15.6k Golang : Convert date format and separator yyyy-mm-dd to dd-mm-yyyy
+14.6k Golang : Convert(cast) int to float example
+10.5k Generate Random number with math/rand in Go
+19.6k Golang : Set or Add HTTP Request Headers
+8.8k Golang : Take screen shot of browser with JQuery example
+6k Golang : Experimenting with the Rejang script
+5.4k Golang : Qt update UI elements with core.QCoreApplication_ProcessEvents
+19.6k Golang : Close channel after ticker stopped example
+16.5k Golang : Check if a string contains multiple sub-strings in []string?