當前位置: 首頁>>代碼示例>>Golang>>正文


Golang FloatMatrix.NumElements方法代碼示例

本文整理匯總了Golang中github.com/hrautila/go/opt/matrix.FloatMatrix.NumElements方法的典型用法代碼示例。如果您正苦於以下問題:Golang FloatMatrix.NumElements方法的具體用法?Golang FloatMatrix.NumElements怎麽用?Golang FloatMatrix.NumElements使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/hrautila/go/opt/matrix.FloatMatrix的用法示例。


在下文中一共展示了FloatMatrix.NumElements方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: matrixNaN

func matrixNaN(x *matrix.FloatMatrix) bool {
	for i := 0; i < x.NumElements(); i++ {
		if math.IsNaN(x.GetIndex(i)) {
			return true
		}
	}
	return false
}
開發者ID:hrautila,項目名稱:go.opt.old,代碼行數:8,代碼來源:kkt.go

示例2: jdot

/*
   Returns x' * J * y, where J = [1, 0; 0, -I].
*/
func jdot(x, y *matrix.FloatMatrix, n, offsetx, offsety int) float64 {
	if n <= 0 {
		n = x.NumElements()
	}
	a := blas.DotFloat(x, y, &la_.IOpt{"n", n - 1}, &la_.IOpt{"offsetx", offsetx + 1},
		&la_.IOpt{"offsety", offsety + 1})
	return x.GetIndex(offsetx)*y.GetIndex(offsety) - a
}
開發者ID:hrautila,項目名稱:go.opt.old,代碼行數:11,代碼來源:misc.go

示例3: jnrm2

/*
   Returns sqrt(x' * J * x) where J = [1, 0; 0, -I], for a vector
   x in a second order cone.
*/
func jnrm2(x *matrix.FloatMatrix, n, offset int) float64 {
	/*DEBUGGED*/
	if n <= 0 {
		n = x.NumElements()
	}
	if offset < 0 {
		offset = 0
	}
	a := blas.Nrm2Float(x, &la_.IOpt{"n", n - 1}, &la_.IOpt{"offset", offset + 1})
	fst := x.GetIndex(offset)
	return math.Sqrt(fst-a) * math.Sqrt(fst+a)
}
開發者ID:hrautila,項目名稱:go.opt.old,代碼行數:16,代碼來源:misc.go


注:本文中的github.com/hrautila/go/opt/matrix.FloatMatrix.NumElements方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。