Exemplo n.º 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);
}
Exemplo n.º 2
0
void SGVector<complex128_t>::zero()
{
	if (vector && vlen)
		set_const(complex128_t(0.0));
}
Exemplo n.º 3
0
void SGMatrix<complex128_t>::zero()
{
	if (matrix && (int64_t(num_rows)*num_cols))
		set_const(complex128_t(0.0));
}
Exemplo n.º 4
0
void SGVector<complex128_t>::zero()
{
	assert_on_cpu();
	if (vector && vlen)
		set_const(complex128_t(0.0));
}