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


Golang GslMatrixComplexFloat.Ptr方法代碼示例

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


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

示例1: Cher2k

func Cher2k(uplo Uplo, trans Transpose, alpha complex64, a *matrix.GslMatrixComplexFloat, b *matrix.GslMatrixComplexFloat, beta float32, c *matrix.GslMatrixComplexFloat) int32 {
	_arg_2 := complex_.GoComplexFloatToGsl(alpha)
	return int32(C.gsl_blas_cher2k(C.CBLAS_UPLO_t(uplo), C.CBLAS_TRANSPOSE_t(trans), *(*C.gsl_complex_float)(unsafe.Pointer(_arg_2)), (*C.gsl_matrix_complex_float)(unsafe.Pointer(a.Ptr())), (*C.gsl_matrix_complex_float)(unsafe.Pointer(b.Ptr())), C.float(beta), (*C.gsl_matrix_complex_float)(unsafe.Pointer(c.Ptr()))))
}
開發者ID:postfix,項目名稱:gsl-1,代碼行數:4,代碼來源:blas.go

示例2: Ctrsm

func Ctrsm(side Side, uplo Uplo, transA Transpose, diag Diag, alpha complex64, a *matrix.GslMatrixComplexFloat, b *matrix.GslMatrixComplexFloat) int32 {
	_arg_4 := complex_.GoComplexFloatToGsl(alpha)
	return int32(C.gsl_blas_ctrsm(C.CBLAS_SIDE_t(side), C.CBLAS_UPLO_t(uplo), C.CBLAS_TRANSPOSE_t(transA), C.CBLAS_DIAG_t(diag), *(*C.gsl_complex_float)(unsafe.Pointer(_arg_4)), (*C.gsl_matrix_complex_float)(unsafe.Pointer(a.Ptr())), (*C.gsl_matrix_complex_float)(unsafe.Pointer(b.Ptr()))))
}
開發者ID:postfix,項目名稱:gsl-1,代碼行數:4,代碼來源:blas.go

示例3: Cherk

func Cherk(uplo Uplo, trans Transpose, alpha float32, a *matrix.GslMatrixComplexFloat, beta float32, c *matrix.GslMatrixComplexFloat) int32 {
	return int32(C.gsl_blas_cherk(C.CBLAS_UPLO_t(uplo), C.CBLAS_TRANSPOSE_t(trans), C.float(alpha), (*C.gsl_matrix_complex_float)(unsafe.Pointer(a.Ptr())), C.float(beta), (*C.gsl_matrix_complex_float)(unsafe.Pointer(c.Ptr()))))
}
開發者ID:postfix,項目名稱:gsl-1,代碼行數:3,代碼來源:blas.go

示例4: Cgemm

func Cgemm(transA Transpose, transB Transpose, alpha complex64, a *matrix.GslMatrixComplexFloat, b *matrix.GslMatrixComplexFloat, beta complex64, c *matrix.GslMatrixComplexFloat) int32 {
	_arg_2 := complex_.GoComplexFloatToGsl(alpha)
	_arg_5 := complex_.GoComplexFloatToGsl(beta)
	return int32(C.gsl_blas_cgemm(C.CBLAS_TRANSPOSE_t(transA), C.CBLAS_TRANSPOSE_t(transB), *(*C.gsl_complex_float)(unsafe.Pointer(_arg_2)), (*C.gsl_matrix_complex_float)(unsafe.Pointer(a.Ptr())), (*C.gsl_matrix_complex_float)(unsafe.Pointer(b.Ptr())), *(*C.gsl_complex_float)(unsafe.Pointer(_arg_5)), (*C.gsl_matrix_complex_float)(unsafe.Pointer(c.Ptr()))))
}
開發者ID:postfix,項目名稱:gsl-1,代碼行數:5,代碼來源:blas.go

示例5: Chemm

func Chemm(side Side, uplo Uplo, alpha complex64, a *matrix.GslMatrixComplexFloat, b *matrix.GslMatrixComplexFloat, beta complex64, c *matrix.GslMatrixComplexFloat) int32 {
	_arg_2 := complex_.GoComplexFloatToGsl(alpha)
	_arg_5 := complex_.GoComplexFloatToGsl(beta)
	return int32(C.gsl_blas_chemm(C.CBLAS_SIDE_t(side), C.CBLAS_UPLO_t(uplo), *(*C.gsl_complex_float)(unsafe.Pointer(_arg_2)), (*C.gsl_matrix_complex_float)(unsafe.Pointer(a.Ptr())), (*C.gsl_matrix_complex_float)(unsafe.Pointer(b.Ptr())), *(*C.gsl_complex_float)(unsafe.Pointer(_arg_5)), (*C.gsl_matrix_complex_float)(unsafe.Pointer(c.Ptr()))))
}
開發者ID:postfix,項目名稱:gsl-1,代碼行數:5,代碼來源:blas.go

示例6: Cher2

func Cher2(uplo Uplo, alpha complex64, x *vector.GslVectorComplexFloat, y *vector.GslVectorComplexFloat, a *matrix.GslMatrixComplexFloat) int32 {
	_arg_1 := complex_.GoComplexFloatToGsl(alpha)
	return int32(C.gsl_blas_cher2(C.CBLAS_UPLO_t(uplo), *(*C.gsl_complex_float)(unsafe.Pointer(_arg_1)), (*C.gsl_vector_complex_float)(unsafe.Pointer(x.Ptr())), (*C.gsl_vector_complex_float)(unsafe.Pointer(y.Ptr())), (*C.gsl_matrix_complex_float)(unsafe.Pointer(a.Ptr()))))
}
開發者ID:postfix,項目名稱:gsl-1,代碼行數:4,代碼來源:blas.go

示例7: Cher

func Cher(uplo Uplo, alpha float32, x *vector.GslVectorComplexFloat, a *matrix.GslMatrixComplexFloat) int32 {
	return int32(C.gsl_blas_cher(C.CBLAS_UPLO_t(uplo), C.float(alpha), (*C.gsl_vector_complex_float)(unsafe.Pointer(x.Ptr())), (*C.gsl_matrix_complex_float)(unsafe.Pointer(a.Ptr()))))
}
開發者ID:postfix,項目名稱:gsl-1,代碼行數:3,代碼來源:blas.go

示例8: Cgerc

func Cgerc(alpha complex64, x *vector.GslVectorComplexFloat, y *vector.GslVectorComplexFloat, a *matrix.GslMatrixComplexFloat) int32 {
	_arg_0 := complex_.GoComplexFloatToGsl(alpha)
	return int32(C.gsl_blas_cgerc(*(*C.gsl_complex_float)(unsafe.Pointer(_arg_0)), (*C.gsl_vector_complex_float)(unsafe.Pointer(x.Ptr())), (*C.gsl_vector_complex_float)(unsafe.Pointer(y.Ptr())), (*C.gsl_matrix_complex_float)(unsafe.Pointer(a.Ptr()))))
}
開發者ID:postfix,項目名稱:gsl-1,代碼行數:4,代碼來源:blas.go

示例9: Ctrsv

func Ctrsv(uplo Uplo, transA Transpose, diag Diag, a *matrix.GslMatrixComplexFloat, x *vector.GslVectorComplexFloat) int32 {
	return int32(C.gsl_blas_ctrsv(C.CBLAS_UPLO_t(uplo), C.CBLAS_TRANSPOSE_t(transA), C.CBLAS_DIAG_t(diag), (*C.gsl_matrix_complex_float)(unsafe.Pointer(a.Ptr())), (*C.gsl_vector_complex_float)(unsafe.Pointer(x.Ptr()))))
}
開發者ID:postfix,項目名稱:gsl-1,代碼行數:3,代碼來源:blas.go

示例10: Cgemv

func Cgemv(transA Transpose, alpha complex64, a *matrix.GslMatrixComplexFloat, x *vector.GslVectorComplexFloat, beta complex64, y *vector.GslVectorComplexFloat) int32 {
	_arg_1 := complex_.GoComplexFloatToGsl(alpha)
	_arg_4 := complex_.GoComplexFloatToGsl(beta)
	return int32(C.gsl_blas_cgemv(C.CBLAS_TRANSPOSE_t(transA), *(*C.gsl_complex_float)(unsafe.Pointer(_arg_1)), (*C.gsl_matrix_complex_float)(unsafe.Pointer(a.Ptr())), (*C.gsl_vector_complex_float)(unsafe.Pointer(x.Ptr())), *(*C.gsl_complex_float)(unsafe.Pointer(_arg_4)), (*C.gsl_vector_complex_float)(unsafe.Pointer(y.Ptr()))))
}
開發者ID:postfix,項目名稱:gsl-1,代碼行數:5,代碼來源:blas.go


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