当前位置: 首页>>代码示例>>Golang>>正文


Golang matrix.DenseMatrix类代码示例

本文整理汇总了Golang中github.com/skelterjohn/go/matrix.DenseMatrix的典型用法代码示例。如果您正苦于以下问题:Golang DenseMatrix类的具体用法?Golang DenseMatrix怎么用?Golang DenseMatrix使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了DenseMatrix类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: showLU

func showLU(a *mat.DenseMatrix) {
	fmt.Printf("\na:\n%v\n", a)
	l, u, p := a.LU()
	fmt.Printf("l:\n%v\n", l)
	fmt.Printf("u:\n%v\n", u)
	fmt.Printf("p:\n%v\n", p)
}
开发者ID:travis1230,项目名称:RosettaCodeData,代码行数:7,代码来源:lu-decomposition-3.go

示例2: demo

func demo(m *mat.DenseMatrix) {
	fmt.Println("A:")
	fmt.Println(m)
	l, err := m.Cholesky()
	if err != nil {
		fmt.Println(err)
		return
	}
	fmt.Println("L:")
	fmt.Println(l)
}
开发者ID:travis1230,项目名称:RosettaCodeData,代码行数:11,代码来源:cholesky-decomposition-3.go

示例3: MatrixNormal

func MatrixNormal(M, Omega, Sigma *mx.DenseMatrix) func() (X *mx.DenseMatrix) {
	checkMatrixNormal(M, Omega, Sigma)

	Mv := mx.Vectorize(M)
	Cov := mx.Kronecker(Omega, Sigma)
	normal := MVNormal(Mv, Cov)
	return func() (X *mx.DenseMatrix) {
		Xv := normal()
		X = mx.Unvectorize(Xv, M.Rows(), M.Cols())
		return
	}
}
开发者ID:pageboy-za,项目名称:gostat,代码行数:12,代码来源:matrix_normal.go

示例4: getNextLocations

func getNextLocations(piece byte, allMoves *matrix.DenseMatrix, ellipse *matrix.DenseMatrix, baseNode *node.Node) []*node.Node {
	result := make([]*node.Node, 0, 20)

	x := baseNode.GetX()
	y := baseNode.GetY()
	next := baseNode.GetStep() + 1

	// Start with the single move board
	var singleMove *matrix.DenseMatrix
	switch piece {
	case Pawn:
		singleMove = singlePawnMove
	case Rook:
		singleMove = singleRookMove
	case Knight:
		singleMove = singleKnightMove
	case Bishop:
		singleMove = singleBishopMove
	case Queen:
		singleMove = singleQueenMove
	case King:
		singleMove = singleKingMove
	case Puppy:
		singleMove = singlePuppyMove
	}
	singleMove = shiftMatrix(singleMove, x-8, y-8)
	singleMove = singleMove.GetMatrix(7, 0, 8, 8)

	// fmt.Println("(", x, ", ", y, ")")
	// fmt.Println("Single Move: \n", singleMove)

	// fmt.Println("\nAll Moves: \n", allMoves)
	// fmt.Println("\nEllipse: ", ellipse)

	for i := 0; i < 8; i++ {
		for j := 0; j < 8; j++ {
			// fmt.Println("(", i+1, ", ", 8-j, ") : single: ", singleMove.Get(j, i), "ellipse: ", ellipse.Get(j, i), "all: ", allMoves.Get(j, i))

			if singleMove.Get(j, i) != 0 && ellipse.Get(j, i) != 0 && allMoves.Get(j, i) == float64(next) {
				// fmt.Println("New Child Node: (", i+1, ", ", 8-j, ")")

				var newNode *node.Node
				newNode = new(node.Node)
				newNode.SetX(i + 1)
				newNode.SetY(8 - j)
				newNode.SetStep(next)

				baseNode.AddChild(newNode)
				result = append(result, newNode)
			}
		}
	}

	return result
}
开发者ID:Wmaxlees,项目名称:go-lg-chess,代码行数:55,代码来源:boards.go

示例5: Wishart

func Wishart(n int, V *m.DenseMatrix) func() *m.DenseMatrix {
	p := V.Rows()
	zeros := m.Zeros(p, 1)
	rowGen := MVNormal(zeros, V)
	return func() *m.DenseMatrix {
		x := make([][]float64, n)
		for i := 0; i < n; i++ {
			x[i] = rowGen().Array()
		}
		X := m.MakeDenseMatrixStacked(x)
		S, _ := X.Transpose().TimesDense(X)
		return S
	}
}
开发者ID:pageboy-za,项目名称:gostat,代码行数:14,代码来源:wishart.go

示例6: ComputeDistance

//Computes the Euclidean distance between two vectors.
func (KNN *KNNClassifier) ComputeDistance(vector *mat.DenseMatrix, testrow *mat.DenseMatrix) float64 {
	var sum float64

	difference, err := testrow.MinusDense(vector)
	flat := difference.Array()

	if err != nil {
		fmt.Println(err)
	}

	for _, i := range flat {
		squared := math.Pow(i, 2)
		sum += squared
	}

	eucdistance := math.Sqrt(sum)
	return eucdistance
}
开发者ID:kings,项目名称:golearn,代码行数:19,代码来源:knn.go

示例7: addMovesToBoard

func addMovesToBoard(current *matrix.DenseMatrix, newMoves *matrix.DenseMatrix, steps int) *matrix.DenseMatrix {
	// fmt.Println("New Moves: \n", newMoves.String())

	result := current
	for i := 0; i < 15; i++ {
		for j := 0; j < 15; j++ {
			if newMoves.Get(i, j) != 0 && result.Get(i, j) == float64(0) {
				// fmt.Println("    Adding ", steps, " to (", i, ", ", j, ")")
				// if HoleBoard.Get(i, j) > 0 {
				// 	result.Set(i, j, 500)
				// } else {
				result.Set(i, j, float64(steps))
				// }

			}
		}
	}

	return result
}
开发者ID:Wmaxlees,项目名称:go-lg-chess,代码行数:20,代码来源:boards.go

示例8: calculate_even_fib_until

func calculate_even_fib_until(limit int64) (m []float64) {
	if limit <= 2 { // base case: This cannot be determined by the recurrence relation
		m = []float64{2, 0}
		return
	}
	done := false
	var a, b, c *matrix.DenseMatrix
	a = relation_mat // a holds older b before multiplication
	b = relation_mat // b holds result of matrix multiplication
	c = relation_mat // c holds matrix that is to be multiplied in current iteration
	dict[float64(1)] = relation_mat

	for !done {
		a = b
		b, _ = b.TimesDense(c)
		t, _ := b.TimesDense(init_mat) // calculate resultant vector for a certain power of a matrix
		if t.ColCopy(0)[1] < float64(limit) {
			if pow[1] == -1 { // pow[1] = -1 means we are exponentiating the matrix (first mode).
				pow[0] = 2 * pow[0]
				c = b
				dict[pow[0]] = b
			} else {
				pow[0] = math.Ceil((pow[1] + pow[0]) / float64(2))
				c = dict[math.Ceil((pow[1]-pow[0])/float64(2))]
			}
		} else {
			if pow[1] == -1 {
				pow[1] = pow[0]
				pow[0] = pow[0] / 2
				dict[pow[1]] = b
				if pow[1]-pow[0] < 2 {
					c = dict[float64(1)]
				} else {
					c = dict[math.Ceil((pow[1]-pow[0])/float64(2))]
				}
				b = a
			} else {
				pow[1] = math.Ceil((pow[1] + pow[0]) / float64(2))
				c = dict[math.Ceil((pow[1]-pow[0])/float64(2))]
				b = a
			}
		}
		t, _ = b.TimesDense(init_mat)
		if pow[1] != -1 && t.ColCopy(0)[1] < float64(limit) && t.ColCopy(0)[0] >= float64(limit) {
			done = true
			m = t.ColCopy(0)
		}
	}
	return
}
开发者ID:LuqmanSahaf,项目名称:Solve-Project-Euler,代码行数:50,代码来源:problem2.go

示例9: Wishart_PDF

func Wishart_PDF(n int, V *m.DenseMatrix) func(W *m.DenseMatrix) float64 {
	p := V.Rows()
	Vdet := V.Det()
	Vinv, _ := V.Inverse()
	normalization := pow(2, -0.5*float64(n*p)) *
		pow(Vdet, -0.5*float64(n)) /
		Γ(0.5*float64(n))
	return func(W *m.DenseMatrix) float64 {
		VinvW, _ := Vinv.Times(W)
		return normalization * pow(W.Det(), 0.5*float64(n-p-1)) *
			exp(-0.5*VinvW.Trace())
	}
}
开发者ID:pageboy-za,项目名称:gostat,代码行数:13,代码来源:wishart.go

示例10: Wishart_LnPDF

func Wishart_LnPDF(n int, V *m.DenseMatrix) func(W *m.DenseMatrix) float64 {

	p := V.Rows()
	Vdet := V.Det()
	Vinv, _ := V.Inverse()
	normalization := log(2)*(-0.5*float64(n*p)) +
		log(Vdet)*(-0.5*float64(n)) -
		LnΓ(0.5*float64(n))
	return func(W *m.DenseMatrix) float64 {
		VinvW, _ := Vinv.Times(W)
		return normalization +
			log(W.Det())*0.5*float64(n-p-1) -
			0.5*VinvW.Trace()
	}
}
开发者ID:pageboy-za,项目名称:gostat,代码行数:15,代码来源:wishart.go

示例11: MatrixT

func MatrixT(M, Omega, Sigma *mx.DenseMatrix, n int) func() (T *mx.DenseMatrix) {
	checkMatrixT(M, Omega, Sigma, n)

	fmt.Println("M:", M)
	fmt.Println("Sigma:", Sigma)
	fmt.Println("Omega:", Omega)

	p := M.Rows()
	m := M.Cols()

	OmegaInv, err := Omega.Inverse()
	if err != nil {
		panic(err)
	}

	Sdist := Wishart(n+p-1, OmegaInv)

	Xdist := MatrixNormal(mx.Zeros(p, m), mx.Eye(p), Sigma)

	return func() (T *mx.DenseMatrix) {
		S := Sdist()
		Sinv, err := S.Inverse()
		if err != nil {
			panic(err)
		}
		Sinvc, err := Sinv.Cholesky()
		if err != nil {
			panic(err)
		}
		X := Xdist()
		fmt.Println("Sinvc:", Sinvc)
		fmt.Println("X:", X)
		T, err = Sinvc.Transpose().TimesDense(X)
		if err != nil {
			panic(err)
		}
		err = T.AddDense(M)
		if err != nil {
			panic(err)
		}
		return
	}
}
开发者ID:jmptrader,项目名称:tinystat,代码行数:43,代码来源:matrix_t.go

示例12: Remove

func (this *KnownVarianceLRPosterior) Remove(x, y *mx.DenseMatrix) {
	xxt, _ := x.TimesDense(x.Transpose())
	this.XXt.Subtract(xxt)
	yxt, _ := y.TimesDense(x.Transpose())
	this.YXt.Subtract(yxt)
}
开发者ID:varver,项目名称:probab-google-stat,代码行数:6,代码来源:lin_reg.go

示例13: Insert

func (this *KnownVarianceLRPosterior) Insert(x, y *mx.DenseMatrix) {
	xxt, _ := x.TimesDense(x.Transpose())
	this.XXt.Add(xxt)
	yxt, _ := y.TimesDense(x.Transpose())
	this.YXt.Add(yxt)
}
开发者ID:varver,项目名称:probab-google-stat,代码行数:6,代码来源:lin_reg.go

示例14: NewKnownVarianceLRPosterior

/*
 M is r x c, o x i
 Sigma is r x r, o x o
 Phi is c x c, i x i

 Sigma matches Y o x 1 output dimension
 Phi matches X i x 1 input dimension
*/
func NewKnownVarianceLRPosterior(M, Sigma, Phi *mx.DenseMatrix) (this *KnownVarianceLRPosterior) {
	if M.Rows() != Sigma.Rows() {
		panic("M.Rows != Sigma.Rows")
	}
	if M.Cols() != Phi.Cols() {
		panic("M.Cols != Phi.Cols")
	}
	if Sigma.Rows() != Sigma.Cols() {
		panic("Sigma is not square")
	}
	if Phi.Rows() != Phi.Cols() {
		panic("Phi is not square")
	}
	this = &KnownVarianceLRPosterior{
		M:     M,
		Sigma: Sigma,
		Phi:   Phi,
		XXt:   mx.Zeros(Phi.Cols(), Phi.Cols()),
		YXt:   mx.Zeros(Sigma.Cols(), Phi.Cols()),
	}

	return
}
开发者ID:varver,项目名称:probab-google-stat,代码行数:31,代码来源:lin_reg.go

示例15: KnownVariancePosterior

/*
	If Y ~ N(AX, Sigma, I)
	and A ~ N(M, Sigma, Phi)
	this returns a sampler for P(A|X,Y,Sigma,M,Phi)
*/
func KnownVariancePosterior(Y, X, Sigma, M, Phi *mx.DenseMatrix) func() (A *mx.DenseMatrix) {
	o := Y.Rows()
	i := X.Rows()
	n := Y.Cols()
	if n != X.Cols() {
		panic("X and Y don't have the same number of columns")
	}
	if o != M.Rows() {
		panic("Y.Rows != M.Rows")
	}
	if i != M.Cols() {
		panic("Y.Rows != M.Cols")
	}
	if o != Sigma.Rows() {
		panic("Y.Rows != Sigma.Rows")
	}
	if Sigma.Cols() != Sigma.Rows() {
		panic("Sigma is not square")
	}
	if i != Phi.Rows() {
		panic("X.Rows != Phi.Rows")
	}
	if Phi.Cols() != Phi.Rows() {
		panic("Phi is not square")
	}

	Xt := X.Transpose()

	PhiInv, err := Phi.Inverse()
	if err != nil {
		panic(err)
	}

	XXt, err := X.TimesDense(Xt)
	if err != nil {
		panic(err)
	}

	XXtpPhiInv, err := XXt.PlusDense(PhiInv)
	if err != nil {
		panic(err)
	}

	Omega, err := XXtpPhiInv.Inverse()
	if err != nil {
		panic(err)
	}

	YXtpMPhiInv, err := Y.TimesDense(Xt)
	if err != nil {
		panic(err)
	}

	MPhiInv, err := M.TimesDense(PhiInv)
	if err != nil {
		panic(err)
	}

	err = YXtpMPhiInv.AddDense(MPhiInv)
	if err != nil {
		panic(err)
	}

	Mxy, err := YXtpMPhiInv.TimesDense(Omega)
	if err != nil {
		panic(err)
	}

	if false {
		fmt.Printf("Mxy:\n%v\n", Mxy)
		fmt.Printf("Sigma:\n%v\n", Sigma)
		fmt.Printf("Omega:\n%v\n", Omega)
	}

	return dst.MatrixNormal(Mxy, Sigma, Omega)
}
开发者ID:varver,项目名称:probab-google-stat,代码行数:81,代码来源:lin_reg.go


注:本文中的github.com/skelterjohn/go/matrix.DenseMatrix类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。