Golang : Arithmetic operation with numerical slices or arrays example
Got an email from a new comer to Golang from South Africa, he or she wanted to know how to perform simple operations like arithmetic on numerical slices. There is a package - GoNum - that can do a better job for these kind of problems ... which I reckon is more efficient for mathematical calculations than using Golang's standard slices. However, there is no harm to use slices if all you wanted is to perform some simple operations like plus, minus, multiplication or division on slices or array.
Below is an example of how to use slices for arithmetic operations:
package main
import (
"fmt"
)
func main() {
a := []int{1, 2, 3, 4}
fmt.Println("Original : ", a)
// a * 2
for i, _ := range a {
a[i] = a[i] * 2
}
fmt.Println("a * 2 : ", a)
// a + 10
for i, _ := range a {
a[i] = a[i] + 10
}
fmt.Println("a + 10 : ", a)
b := []int{5, 6, 7, 8}
fmt.Println("b : ", b)
lengthOfA := len(a)
// will cause non-constant array bound lengthOfA error
//c := [lengthOfA]int{}
// if c size is constant, it is ok to hardcode with size of 4 (hand counted)
// c := [4]int{}
// or to make your program more robust
// figure out the slice c's length during runtime with length of a slice
c := make([]int, lengthOfA)
// a + b
// FOR a slice to plus b slice, the size or number of elements in both slices must be the same!
for i, _ := range a {
c[i] = a[i] + b[i]
}
fmt.Printf("a + b : %v + %v = %v \n", a, b, c)
d := make([]int, lengthOfA)
// a * b
for i, _ := range a {
d[i] = a[i] * b[i]
}
fmt.Printf("a * b : %v * %v = %v \n", a, b, d)
// use float64 instead of int type for division
e := make([]float64, lengthOfA)
// a / b
for i, _ := range a {
e[i] = float64(a[i]) / float64(b[i])
}
fmt.Printf("a / b : %v * %v = %v \n", a, b, e)
f := make([]int, lengthOfA)
// a - b
for i, _ := range a {
f[i] = a[i] - b[i]
}
fmt.Printf("a - b : %v * %v = %v \n", a, b, f)
}
Output:
Original : [1 2 3 4]
a * 2 : [2 4 6 8]
a + 10 : [12 14 16 18]
b : [5 6 7 8]
a + b : [12 14 16 18] + [5 6 7 8] = [17 20 23 26]
a * b : [12 14 16 18] * [5 6 7 8] = [60 84 112 144]
a / b : [12 14 16 18] * [5 6 7 8] = [2.4 2.3333333333333335 2.2857142857142856 2.25]
a - b : [12 14 16 18] * [5 6 7 8] = [7 8 9 10]
References:
https://socketloop.com/tutorials/golang-combine-slices-of-complex-numbers-and-operation-example
https://www.socketloop.com/tutorials/golang-squaring-elements-in-array
See also : Golang : Combine slices of complex numbers and operation example
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
+16.2k Golang : Read integer from file into array
+19.3k Golang : Close channel after ticker stopped example
+6k Golang : How to search a list of records or data structures
+21.2k Golang : GORM create record or insert new record into database example
+5.2k Golang : Display advertisement images or strings on random order
+29.2k Golang : Login(Authenticate) with Facebook example
+9.5k Golang : Turn string or text file into slice example
+18.9k Golang : Get host name or domain name from IP address
+7.3k Javascript : Push notifications to browser with Push.js
+10.9k Golang : Calculate Relative Strength Index(RSI) example
+8.9k nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
+4.4k JavaScript : Rounding number to decimal formats to display currency