18 return gsl_matrix_isnull(
gsl()) == 1;
22 return gsl_matrix_ispos(
gsl()) == 1;
26 return gsl_matrix_isneg(
gsl()) == 1;
30 return gsl_matrix_isnonneg(
gsl()) == 1;
39 inline friend bool operator==(
const M &v1,
const M &v2) {
40 return gsl_matrix_equal(v1.gsl(), v2.gsl()) == 1;
49 inline friend bool operator!=(
const M &m1,
const M &m2) {
50 return gsl_matrix_equal(m1.gsl(), m2.gsl()) != 1;
friend bool operator==(const M &v1, const M &v2)
operator == prüfe ob zwei Vektoren gleich sind
const gsl_matrix * gsl() const
ermöglicht direkten Zugriff auf gsl-Funktionen
friend bool operator!=(const M &m1, const M &m2)
operator == prüfe ob zwei Vektoren gleich sind
The IGslContainer struct Basisklasse für gsl-Vektoren und Matrizen.