示例#1
0
文件: blas.go 项目: postfix/gsl-1
func Scasum(x *vector.GslVectorComplexFloat) float32 {
	return float32(C.gsl_blas_scasum((*C.gsl_vector_complex_float)(unsafe.Pointer(x.Ptr()))))
}
示例#2
0
文件: blas.go 项目: postfix/gsl-1
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()))))
}
示例#3
0
文件: blas.go 项目: postfix/gsl-1
func Cdotc(x *vector.GslVectorComplexFloat, y *vector.GslVectorComplexFloat) (int32, complex64) {
	var _outptr_2 C.gsl_complex_float
	_result := int32(C.gsl_blas_cdotc((*C.gsl_vector_complex_float)(unsafe.Pointer(x.Ptr())), (*C.gsl_vector_complex_float)(unsafe.Pointer(y.Ptr())), &_outptr_2))
	return _result, *(*complex64)(unsafe.Pointer(&_outptr_2))
}
示例#4
0
文件: blas.go 项目: postfix/gsl-1
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()))))
}
示例#5
0
文件: blas.go 项目: postfix/gsl-1
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()))))
}
示例#6
0
文件: blas.go 项目: postfix/gsl-1
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()))))
}
示例#7
0
文件: blas.go 项目: postfix/gsl-1
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()))))
}
示例#8
0
文件: blas.go 项目: postfix/gsl-1
func Csscal(alpha float32, x *vector.GslVectorComplexFloat) {
	C.gsl_blas_csscal(C.float(alpha), (*C.gsl_vector_complex_float)(unsafe.Pointer(x.Ptr())))
}
示例#9
0
文件: blas.go 项目: postfix/gsl-1
func Cscal(alpha complex64, x *vector.GslVectorComplexFloat) {
	_arg_0 := complex_.GoComplexFloatToGsl(alpha)
	C.gsl_blas_cscal(*(*C.gsl_complex_float)(unsafe.Pointer(_arg_0)), (*C.gsl_vector_complex_float)(unsafe.Pointer(x.Ptr())))
}
示例#10
0
文件: blas.go 项目: postfix/gsl-1
func Caxpy(alpha complex64, x *vector.GslVectorComplexFloat, y *vector.GslVectorComplexFloat) int32 {
	_arg_0 := complex_.GoComplexFloatToGsl(alpha)
	return int32(C.gsl_blas_caxpy(*(*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()))))
}
示例#11
0
文件: blas.go 项目: postfix/gsl-1
func Ccopy(x *vector.GslVectorComplexFloat, y *vector.GslVectorComplexFloat) int32 {
	return int32(C.gsl_blas_ccopy((*C.gsl_vector_complex_float)(unsafe.Pointer(x.Ptr())), (*C.gsl_vector_complex_float)(unsafe.Pointer(y.Ptr()))))
}
示例#12
0
文件: blas.go 项目: postfix/gsl-1
func Icamax(x *vector.GslVectorComplexFloat) Index {
	return Index(C.gsl_blas_icamax((*C.gsl_vector_complex_float)(unsafe.Pointer(x.Ptr()))))
}