11#ifndef __MEAL_Complex2_H
12#define __MEAL_Complex2_H
20#include "MEAL/Complex.h"
25 typedef Jones< Estimate<T> > type;
29void add_variance (Jones< Estimate<T> >& result,
30 double var,
const Jones<T>& grad)
32 for (
unsigned i=0; i < 4; i++)
33 add_variance (result[i], var, grad[i]);
Pure virtual base class of all complex 2x2 matrix functions.
Definition Complex2.h:40
virtual Complex2 * clone() const
Clone method.
Definition Complex2.C:13
static const char * Name
The name of the class.
Definition Complex2.h:43
Evaluable()
Definition Evaluable.h:48
Namespace in which all modeling and calibration related code is declared.
Definition ExampleComplex2.h:16
Works for most scalar types.
Definition Evaluable.h:22