gofal
CategoryData Structures and Algorithms
SubcategoryMiscellaneous Data Structures and Algorithms
Stars0
fractional api for Go
About gofal
gofal
- Fractional Operational Correlation API base on golang
- Supporting Precision Operations
- Supporting addition, subtraction, multiplication and division
- Support chain expression
- Support result output(flat64)
Example
1、 Add
tmp := fractional.Model(7, 12)
tmp1 := fractional.Model(1, 12)
fmt.Println(tmp.Add(tmp1))
- out
2/3
2、 Subtraction
tmp = fractional.Model(1, 4)
tmp1 = fractional.Model(1, 3)
fmt.Println(tmp.Sub(tmp1))
- out
-1/12
3、Multiplication
tmp = fractional.Model(3, 4)
tmp1 = fractional.Model(2, 3)
fmt.Println(tmp.Mul(tmp1))
- out
1/2
4、 Division
tmp = fractional.Model(3, 4)
tmp1 = fractional.Model(2, 3)
fmt.Println(tmp.Div(tmp1))
- out
9/8
5、 out put (flat64)
tmp = fractional.Model(1, 3)
fmt.Println(tmp.Verdict())
- out
0.3333333333333333
6、Chain expression
tmp := fractional.Model(1, 3)
tmp.Add(fractional.Model(1)).Mul(tmp)
fmt.Println(tmp)
- out
16/9
- All functions can support chain expressions
Frequently Asked Questions
What is gofal?
gofal is a Data Structures and Algorithms library for the Go programming language. fractional api for Go
How do I install gofal?
Install gofal with the Go module system using `go get xxjwxc/gofal`. Check the repository for the current installation instructions.
What category does gofal belong to?
gofal is listed under Data Structures and Algorithms, specifically Miscellaneous Data Structures and Algorithms.