mathext

package
v1.1.2 Latest Latest
Warning

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

Go to latest
Published: Apr 20, 2021 License: BSD-3-Clause Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	Int8    = new(I8)
	Int16   = new(I16)
	Int32   = new(I32)
	Int64   = new(I64)
	Int     = new(INT)
	UInt8   = new(U8)
	UInt16  = new(U16)
	UInt32  = new(U32)
	UInt64  = new(U64)
	UInt    = new(UINT)
	Float32 = new(F32)
	Float64 = new(F64)
)

Functions

func IsAlmostEqualFloat32

func IsAlmostEqualFloat32(a, b float32) bool

func IsAlmostEqualFloat64

func IsAlmostEqualFloat64(a, b float64) bool

Returns true if this number is at most kMaxUlps ULP's away from rhs. In particular, this function:

  • returns false if either number is (or both are) NAN.
  • treats really large numbers as almost equal to infinity.
  • thinks +0.0 and -0.0 are 0 DLP's apart.

func RandFloat

func RandFloat(min, max float64) float64

Random number in [min, max]

func RandInt

func RandInt(min, max int) int

Random integer in [min, max]

func RangePerm

func RangePerm(min, max int) []int

集合内随机取数, [min,max]

func RoundHalf

func RoundHalf(v float64) int

四舍五入

func SignAndMagnitudeToBiasedFloat32

func SignAndMagnitudeToBiasedFloat32(sam uint32) uint32

func SignAndMagnitudeToBiasedFloat64

func SignAndMagnitudeToBiasedFloat64(sam uint64) uint64

Converts an integer from the sign-and-magnitude representation to the biased representation. More precisely, let N be 2 to the power of (kBitCount - 1), an integer x is represented by the unsigned number x + N.

For instance,

-N + 1 (the most negative number representable using
       sign-and-magnitude) is represented by 1;
0      is represented by N; and
N - 1  (the biggest number representable using
       sign-and-magnitude) is represented by 2N - 1.

Read http://en.wikipedia.org/wiki/Signed_number_representations for more details on signed number representations.

Types

type F32

type F32 float32

func (F32) Abs

func (F32) Abs(x float32) float32

func (F32) Dim

func (a F32) Dim(x, y float32) float32

func (F32) Max

func (F32) Max(x, y float32) float32

func (F32) Min

func (F32) Min(x, y float32) float32

func (F32) SafeDiv

func (a F32) SafeDiv(x, y float32) float32

type F64

type F64 float64

func (F64) Abs

func (F64) Abs(x float64) float64

func (F64) Dim

func (a F64) Dim(x, y float64) float64

func (F64) Max

func (F64) Max(x, y float64) float64

func (F64) Min

func (F64) Min(x, y float64) float64

func (F64) SafeDiv

func (a F64) SafeDiv(x, y float64) float64

type I16

type I16 int16

func (I16) Abs

func (I16) Abs(x int16) int16

func (I16) Dim

func (a I16) Dim(x, y int16) int16

func (I16) Max

func (I16) Max(x, y int16) int16

func (I16) Min

func (I16) Min(x, y int16) int16

type I32

type I32 int32

func (I32) Abs

func (I32) Abs(x int32) int32

func (I32) Dim

func (a I32) Dim(x, y int32) int32

func (I32) Max

func (I32) Max(x, y int32) int32

func (I32) Min

func (I32) Min(x, y int32) int32

type I64

type I64 int64

func (I64) Abs

func (I64) Abs(x int64) int64

func (I64) Dim

func (a I64) Dim(x, y int64) int64

func (I64) Max

func (I64) Max(x, y int64) int64

func (I64) Min

func (I64) Min(x, y int64) int64

type I8

type I8 int8

func (I8) Abs

func (I8) Abs(x int8) int8

func (I8) Dim

func (a I8) Dim(x, y int8) int8

func (I8) Max

func (I8) Max(x, y int8) int8

func (I8) Min

func (I8) Min(x, y int8) int8

type INT

type INT int

func (INT) Abs

func (INT) Abs(x int) int

func (INT) Dim

func (a INT) Dim(x, y int) int

func (INT) Max

func (INT) Max(x, y int) int

func (INT) Min

func (INT) Min(x, y int) int

type LCG

type LCG struct {
	// contains filtered or unexported fields
}

线性同余法的随机数生成器 see https://en.wikipedia.org/wiki/Linear_congruential_generator

func (*LCG) Rand

func (g *LCG) Rand() uint32

func (*LCG) Seed

func (g *LCG) Seed(seed uint32)

type U16

type U16 uint16

func (U16) Abs

func (U16) Abs(x uint16) uint16

func (U16) Dim

func (a U16) Dim(x, y uint16) uint16

func (U16) Max

func (U16) Max(x, y uint16) uint16

func (U16) Min

func (U16) Min(x, y uint16) uint16

type U32

type U32 uint32

func (U32) Abs

func (U32) Abs(x uint32) uint32

func (U32) Dim

func (a U32) Dim(x, y uint32) uint32

func (U32) Max

func (U32) Max(x, y uint32) uint32

func (U32) Min

func (U32) Min(x, y uint32) uint32

type U64

type U64 uint64

func (U64) Abs

func (U64) Abs(x uint64) uint64

func (U64) Dim

func (a U64) Dim(x, y uint64) uint64

func (U64) Max

func (U64) Max(x, y uint64) uint64

func (U64) Min

func (U64) Min(x, y uint64) uint64

type U8

type U8 uint8

func (U8) Abs

func (U8) Abs(x uint8) uint8

func (U8) Dim

func (a U8) Dim(x, y uint8) uint8

func (U8) Max

func (U8) Max(x, y uint8) uint8

func (U8) Min

func (U8) Min(x, y uint8) uint8

type UINT

type UINT uint

func (UINT) Abs

func (UINT) Abs(x uint) uint

func (UINT) Dim

func (a UINT) Dim(x, y uint) uint

func (UINT) Max

func (UINT) Max(x, y uint) uint

func (UINT) Min

func (UINT) Min(x, y uint) uint

Jump to

Keyboard shortcuts

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