gofal

command module
v0.0.0-...-7b4349a Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 8, 2019 License: MIT Imports: 2 Imported by: 0

README

Mentioned in Awesome Go

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

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL