ARTS
2.3.1285(git:92a29ea9-dirty)
|
Header file for logic.cc. More...
Go to the source code of this file.
Functions | |
bool | is_bool (const Index &x) |
Checks if a variable equals 0 or 1. More... | |
bool | is_multiple (const Index &x, const Index &y) |
Checks if an integer is a multiple of another integer. More... | |
bool | is_size (ConstVectorView x, const Index &l) |
Verifies that the size of x is l. More... | |
bool | is_size (ConstMatrixView x, const Index &r, const Index &c) |
Verifies that the size of x is r by c. More... | |
bool | is_size (ConstTensor3View x, const Index &p, const Index &r, const Index &c) |
Verifies that the size of x is [p,r,c]. More... | |
bool | is_size (ConstTensor4View x, const Index &b, const Index &p, const Index &r, const Index &c) |
Verifies that the size of x is [b,p,r,c]. More... | |
bool | is_size (ConstTensor5View x, const Index &s, const Index &b, const Index &p, const Index &r, const Index &c) |
Verifies that the size of x is [s,b,p,r,c]. More... | |
bool | is_size (ConstTensor6View x, const Index &v, const Index &s, const Index &b, const Index &p, const Index &r, const Index &c) |
Verifies that the size of x is [v,s,b,p,r,c]. More... | |
bool | is_size (ConstTensor7View x, const Index &l, const Index &v, const Index &s, const Index &b, const Index &p, const Index &r, const Index &c) |
Verifies that the size of x is [l,v,s,b,p,r,c]. More... | |
bool | is_sorted (ConstVectorView x) |
Checks if a vector is sorted in ascending order. More... | |
bool | is_increasing (ConstVectorView x) |
Checks if a vector is sorted and strictly increasing. More... | |
bool | is_increasing (const ArrayOfIndex &x) |
Checks if an ArrayOfIndex is sorted and strictly increasing. More... | |
bool | is_decreasing (ConstVectorView x) |
Checks if a vector is sorted in reversed order and is strictly decreasing. More... | |
bool | is_unique (const ArrayOfIndex &x) |
Checks if an ArrayOfIndex is unique, i.e., has no duplicate values. More... | |
bool | is_singular (ConstMatrixView A) |
Checks if a square matrix is singular. More... | |
bool | is_diagonal (ConstMatrixView A) |
Checks if a square matrix is diagonal. More... | |
bool | is_same_within_epsilon (const Numeric &a, const Numeric &b, const Numeric &epsilon) |
Check, if two numbers agree within a given epsilon. More... | |
bool | is_lon_cyclic (ConstVectorView grid, const Numeric &epsilon=0.001) |
Check if the given longitude grid is cyclic. More... | |
template<class T > | |
bool | is_size (const Array< T > &x, const Index &n) |
Verifies that the size of x is n. More... | |
bool is_bool | ( | const Index & | x | ) |
Checks if a variable equals 0 or 1.
x | A variable of type Index. |
Definition at line 50 of file logic.cc.
Referenced by chk_if_bool().
bool is_decreasing | ( | ConstVectorView | x | ) |
Checks if a vector is sorted in reversed order and is strictly decreasing.
Duplicated values are not allowed.
x | A vector. |
Definition at line 252 of file logic.cc.
References i, and ConstVectorView::nelem().
Referenced by check_retrieval_grids(), chk_if_decreasing(), chk_interpolation_grids(), chk_interpolation_grids_loose_no_data_check(), gridpos(), jacobianCalcPointingZaInterp(), p_gridFromZRaw(), sensor_responseAntenna(), test44(), and VectorInsertGridPoints().
bool is_diagonal | ( | ConstMatrixView | A | ) |
Checks if a square matrix is diagonal.
If one off diagonal element is nonzero the function returns false.
Due to numerical inaccuracies the values can deviate from 0. The value for the precision is defined in the file logic.cc.
A | A square matrix. |
Definition at line 323 of file logic.cc.
References i, ConstMatrixView::ncols(), ConstMatrixView::nrows(), and precision.
Referenced by interpTArray().
bool is_increasing | ( | ConstVectorView | x | ) |
Checks if a vector is sorted and strictly increasing.
Duplicated values are not allowed.
x | A vector. |
Definition at line 215 of file logic.cc.
References i, and ConstVectorView::nelem().
Referenced by bin_quadweights(), check_disort_input(), check_retrieval_grids(), chk_if_increasing(), chk_interpolation_grids(), chk_interpolation_grids_loose_no_data_check(), DoitInit(), find_effective_channel_boundaries(), gridpos(), jacobianCalcPointingZaInterp(), MCRadar(), p_gridFromZRaw(), pndFromPsd(), pndFromPsdBasic(), sensor_checkedCalc(), sensor_responseAntenna(), sensor_responseBackend(), sensor_responseMixer(), test44(), VectorInsertGridPoints(), and yActive().
bool is_increasing | ( | const ArrayOfIndex & | x | ) |
Checks if an ArrayOfIndex is sorted and strictly increasing.
Duplicated values are not allowed. Clone of the similar funciton for vectors.
x | An ArrayOfIndex. |
Definition at line 236 of file logic.cc.
References i, and Array< base >::nelem().
bool is_lon_cyclic | ( | ConstVectorView | grid, |
const Numeric & | epsilon | ||
) |
Check if the given longitude grid is cyclic.
Checks whether the grid spans 0 to 360 degrees.
grid | Longitude grid. |
epsilon | The epsilon of the required agreement. |
Definition at line 369 of file logic.cc.
References is_same_within_epsilon(), and ConstVectorView::nelem().
Referenced by chk_atm_field(), GriddedFieldLatLonRegrid(), gridpos_poly_cyclic_longitudinal(), gridpos_poly_longitudinal(), and plevel_slope_3d().
Checks if an integer is a multiple of another integer.
The function returns true if y * n = x, where n is an integer.
The choice of y = 0 is not allowed.
x | Nominator of the integer division. |
y | Denominator of the integer division. |
Definition at line 65 of file logic.cc.
Referenced by integer_div(), and sensor_responseFrequencySwitching().
Check, if two numbers agree within a given epsilon.
This logical function verifies if two numbers are the same for the desired number of digits. The comparison statement comes from Oliver: ( abs(a-b) <= epsilon * max(a,b) )
Modified to make sure that negative numbers are also treated correctly.
The variable epsilon gives the number of digits used for the comparison. (epsilon = 0.0001 for a comparison up to the 5th digit)
a | A number. |
b | Another number. |
epsilon | The epsilon of the required agreement. |
Definition at line 351 of file logic.cc.
Referenced by chk_atm_field(), chk_atm_surface(), ConvertAzimuthallyRandomSingleScatteringData(), GriddedFieldLatLonRegrid(), interp(), is_lon_cyclic(), iyInterpCloudboxField(), scat_data_checkedCalc(), scat_data_singleTmatrix(), scat_dataCalc(), and surf_albedoCalc().
bool is_singular | ( | ConstMatrixView | A | ) |
Checks if a square matrix is singular.
If one row of a matrix has only 0 values the matrix is singular.
Due to numerical inaccuracies the values can deviate from 0. The value for the precision is defined in the file logic.cc.
A | A square matrix. |
Definition at line 295 of file logic.cc.
References i, ConstMatrixView::ncols(), ConstMatrixView::nrows(), precision, and temp.
Referenced by ext2trans().
bool is_size | ( | ConstVectorView | x, |
const Index & | n | ||
) |
Verifies that the size of x is l.
This function is supposed to be used together with assert like this: assert(is_size(x,l))
x | The Vector to check. |
n | The desired length. |
Definition at line 79 of file logic.cc.
References ConstVectorView::nelem().
Referenced by AngIntegrate_trapezoid(), AngIntegrate_trapezoid_fixedstep(), AngIntegrate_trapezoid_fixedstep_opt(), AngIntegrate_trapezoid_fixedstep_opt2(), AngIntegrate_trapezoid_opt(), AngIntegrate_trapezoid_opti(), AngIntegrate_trapezoid_original(), cloudbox_fieldUpdate1D(), cloudbox_fieldUpdateSeq1D(), cloudbox_fieldUpdateSeq1DPP(), cloudbox_fieldUpdateSeq3D(), doit_conv_flagAbs(), doit_conv_flagAbsBT(), doit_conv_flagLsq(), doit_scat_fieldCalc(), doit_scat_fieldCalcLimb(), GasAbsLookup::Extract(), gridpos(), gridpos_poly(), interp(), interpweights(), iyInterpCloudboxField(), lubacksub(), ludcmp(), matrix_exp(), matrix_exp2(), matrix_exp2_4x4(), matrix_exp_4x4(), matrix_exp_dmatrix_exp(), mult_outer(), propmat4x4_to_transmat4x4(), rte_step_doit_replacement(), scale_columns(), scale_rows(), ScatSpeciesMerge(), and special_matrix_exp_and_dmatrix_exp_dx_for_rt().
bool is_size | ( | ConstMatrixView | x, |
const Index & | r, | ||
const Index & | c | ||
) |
bool is_size | ( | ConstTensor3View | x, |
const Index & | p, | ||
const Index & | r, | ||
const Index & | c | ||
) |
bool is_size | ( | ConstTensor4View | x, |
const Index & | b, | ||
const Index & | p, | ||
const Index & | r, | ||
const Index & | c | ||
) |
bool is_size | ( | ConstTensor5View | x, |
const Index & | s, | ||
const Index & | b, | ||
const Index & | p, | ||
const Index & | r, | ||
const Index & | c | ||
) |
Verifies that the size of x is [s,b,p,r,c].
x | The Tensor to check. |
s | The desired number of shelves. |
b | The desired number of books. |
p | The desired number of pages. |
r | The desired number of rows. |
c | The desired number of columns. |
bool is_size | ( | ConstTensor6View | x, |
const Index & | v, | ||
const Index & | s, | ||
const Index & | b, | ||
const Index & | p, | ||
const Index & | r, | ||
const Index & | c | ||
) |
Verifies that the size of x is [v,s,b,p,r,c].
x | The Tensor to check. |
v | The desired number of vitrines. |
s | The desired number of shelves. |
b | The desired number of books. |
p | The desired number of pages. |
r | The desired number of rows. |
c | The desired number of columns. |
bool is_size | ( | ConstTensor7View | x, |
const Index & | l, | ||
const Index & | v, | ||
const Index & | s, | ||
const Index & | b, | ||
const Index & | p, | ||
const Index & | r, | ||
const Index & | c | ||
) |
Verifies that the size of x is [l,v,s,b,p,r,c].
x | The Tensor to check. |
l | The desired number of libraries. |
v | The desired number of vitrines. |
s | The desired number of shelves. |
b | The desired number of books. |
p | The desired number of pages. |
r | The desired number of rows. |
c | The desired number of columns. |
Verifies that the size of x is n.
This function is supposed to be used together with assert like this: assert(is_size(x,n)). It works for any array type.
x | The Array to check. |
n | The desired length. |
Definition at line 109 of file logic.h.
References Array< base >::nelem().
bool is_sorted | ( | ConstVectorView | x | ) |
Checks if a vector is sorted in ascending order.
Duplicated values are allowed.
x | A vector. |
Definition at line 199 of file logic.cc.
References i, and ConstVectorView::nelem().
Referenced by test44(), and ybatchTimeAveraging().
bool is_unique | ( | const ArrayOfIndex & | x | ) |
Checks if an ArrayOfIndex is unique, i.e., has no duplicate values.
This only returns true if the array does not contain any duplicate values.
x | An ArrayOfIndex. |
Definition at line 274 of file logic.cc.
References i, and Array< base >::nelem().
Referenced by abs_lookupCalc(), and GasAbsLookup::Adapt().