예제 #1
0
complex128_t SGMatrix<complex128_t>::max_single()
{
	SG_SERROR("SGMatrix::max_single():: Not supported for complex128_t\n");
	return complex128_t(0.0);
}
예제 #2
0
파일: SGVector.cpp 프로젝트: DrahmA/shogun
void SGVector<complex128_t>::zero()
{
	if (vector && vlen)
		set_const(complex128_t(0.0));
}
예제 #3
0
void SGMatrix<complex128_t>::zero()
{
	if (matrix && (int64_t(num_rows)*num_cols))
		set_const(complex128_t(0.0));
}
예제 #4
0
void SGVector<complex128_t>::zero()
{
	assert_on_cpu();
	if (vector && vlen)
		set_const(complex128_t(0.0));
}