ANIMA
4.0
src
Anima
math-tools
special_functions
animaGaussLaguerreQuadrature.cxx
Go to the documentation of this file.
1
#include "
animaGaussLaguerreQuadrature.h
"
2
#include <iostream>
3
4
namespace
anima
5
{
6
7
GaussLaguerreQuadrature::GaussLaguerreQuadrature
()
8
{
9
m_DeltaValue = 0.0;
10
m_ScaleValue = 1.0;
11
}
12
13
void
GaussLaguerreQuadrature::SetInterestZone
(
double
minVal,
double
maxVal)
14
{
15
// Fits [min,max] into [0.0,51]
16
double
lastAbcissa = m_Abcissas[m_Abcissas.size() - 1];
17
18
m_ScaleValue = (maxVal - minVal) / lastAbcissa;
19
m_DeltaValue = minVal;
20
}
21
22
}
// end namespace anima
anima::GaussLaguerreQuadrature::GaussLaguerreQuadrature
GaussLaguerreQuadrature()
Definition:
animaGaussLaguerreQuadrature.cxx:7
animaGaussLaguerreQuadrature.h
anima
Definition:
animaDTIEstimationImageFilter.h:7
anima::GaussLaguerreQuadrature::SetInterestZone
void SetInterestZone(double minVal, double maxVal)
Specifies region on which the main part of the function is to be seen. If not specified, R^+ is the region.
Definition:
animaGaussLaguerreQuadrature.cxx:13
Generated by
1.8.13