|
Intrepid
|
Implementation of basic linear algebra functionality in Euclidean space. More...
#include <Intrepid_RealSpaceTools.hpp>
Static Public Member Functions | |
| static void | absval (Scalar *absArray, const Scalar *inArray, const int size) |
| Computes absolute value of contiguous input data inArray of size size. | |
| static void | absval (Scalar *inoutArray, const int size) |
| Computes absolute value of contiguous data inoutAbsArray of size size in place. | |
| template<class ArrayAbs , class ArrayIn > | |
| static void | absval (ArrayAbs &absArray, const ArrayIn &inArray) |
| Computes absolute value of an array. | |
| template<class ArrayInOut > | |
| static void | absval (ArrayInOut &inoutAbsArray) |
| Computes, in place, absolute value of an array. | |
| static Scalar | vectorNorm (const Scalar *inVec, const int dim, const ENorm normType) |
| Computes norm (1, 2, infinity) of the vector inVec of size dim. | |
| template<class ArrayIn > | |
| static Scalar | vectorNorm (const ArrayIn &inVec, const ENorm normType) |
| Computes norm (1, 2, infinity) of a single vector stored in an array of rank 1. | |
| template<class ArrayNorm , class ArrayIn > | |
| static void | vectorNorm (ArrayNorm &normArray, const ArrayIn &inVecs, const ENorm normType) |
| Computes norms (1, 2, infinity) of vectors stored in a array of total rank 2 (array of vectors), indexed by (i0, D), or 3 (array of arrays of vectors), indexed by (i0, i1, D). | |
| static void | transpose (Scalar *transposeMat, const Scalar *inMat, const int dim) |
| Computes transpose of the square matrix inMat of size dim by dim. | |
| template<class ArrayTranspose , class ArrayIn > | |
| static void | transpose (ArrayTranspose &transposeMats, const ArrayIn &inMats) |
| Computes transposes of square matrices stored in an array of total rank 2 (single matrix), indexed by (D, D), 3 (array of matrices), indexed by (i0, D, D), or 4 (array of arrays of matrices), indexed by (i0, i1, D, D). | |
| static void | inverse (Scalar *inverseMat, const Scalar *inMat, const int dim) |
| Computes inverse of the square matrix inMat of size dim by dim. | |
| template<class ArrayInverse , class ArrayIn > | |
| static void | inverse (ArrayInverse &inverseMats, const ArrayIn &inMats) |
| Computes inverses of nonsingular matrices stored in an array of total rank 2 (single matrix), indexed by (D, D), 3 (array of matrices), indexed by (i0, D, D), or 4 (array of arrays of matrices), indexed by (i0, i1, D, D). | |
| static Scalar | det (const Scalar *inMat, const int dim) |
| Computes determinant of the square matrix inMat of size dim by dim. | |
| template<class ArrayIn > | |
| static Scalar | det (const ArrayIn &inMat) |
| Computes determinant of a single square matrix stored in an array of rank 2. | |
| template<class ArrayDet , class ArrayIn > | |
| static void | det (ArrayDet &detArray, const ArrayIn &inMats) |
| Computes determinants of matrices stored in an array of total rank 3 (array of matrices), indexed by (i0, D, D), or 4 (array of arrays of matrices), indexed by (i0, i1, D, D). | |
| static void | add (Scalar *sumArray, const Scalar *inArray1, const Scalar *inArray2, const int size) |
| Adds contiguous data inArray1 and inArray2 of size size: sumArray = inArray1 + inArray2. | |
| static void | add (Scalar *inoutSumArray, const Scalar *inArray, const int size) |
| Adds, in place, contiguous data inArray into inoutSumArray of size size: inoutSumArray = inoutSumArray + inArray. | |
| template<class ArraySum , class ArrayIn1 , class ArrayIn2 > | |
| static void | add (ArraySum &sumArray, const ArrayIn1 &inArray1, const ArrayIn2 &inArray2) |
| Adds arrays inArray1 and inArray2: sumArray = inArray1 + inArray2. | |
| template<class ArraySum , class ArrayIn > | |
| static void | add (ArraySum &inoutSumArray, const ArrayIn &inArray) |
| Adds, in place, inArray into inoutSumArray: inoutSumArray = inoutSumArray + inArray. | |
| static void | subtract (Scalar *diffArray, const Scalar *inArray1, const Scalar *inArray2, const int size) |
| Subtracts contiguous data inArray2 from inArray1 of size size: diffArray = inArray1 - inArray2. | |
| static void | subtract (Scalar *inoutDiffArray, const Scalar *inArray, const int size) |
| Subtracts, in place, contiguous data inArray from inoutDiffArray of size size: inoutDiffArray = inoutDiffArray - inArray. | |
| template<class ArrayDiff , class ArrayIn1 , class ArrayIn2 > | |
| static void | subtract (ArrayDiff &diffArray, const ArrayIn1 &inArray1, const ArrayIn2 &inArray2) |
| Subtracts inArray2 from inArray1: diffArray = inArray1 - inArray2. | |
| template<class ArrayDiff , class ArrayIn > | |
| static void | subtract (ArrayDiff &inoutDiffArray, const ArrayIn &inArray) |
| Subtracts, in place, inArray from inoutDiffArray: inoutDiffArray = inoutDiffArray - inArray. | |
| static void | scale (Scalar *scaledArray, const Scalar *inArray, const int size, const Scalar scalar) |
| Multiplies contiguous data inArray of size size by a scalar (componentwise): scaledArray = scalar * inArray. | |
| static void | scale (Scalar *inoutScaledArray, const int size, const Scalar scalar) |
| Multiplies, in place, contiguous data inoutScaledArray of size size by a scalar (componentwise): inoutScaledArray = scalar * inoutScaledArray. | |
| template<class ArrayScaled , class ArrayIn > | |
| static void | scale (ArrayScaled &scaledArray, const ArrayIn &inArray, const Scalar scalar) |
| Multiplies array inArray by the scalar scalar (componentwise): scaledArray = scalar * inArray. | |
| template<class ArrayScaled > | |
| static void | scale (ArrayScaled &inoutScaledArray, const Scalar scalar) |
| Multiplies, in place, array inoutScaledArray by the scalar scalar (componentwise): inoutScaledArray = scalar * inoutScaledArray. | |
| static Scalar | dot (const Scalar *inArray1, const Scalar *inArray2, const int size) |
| Computes dot product of contiguous data inArray1 and inArray2 of size size. | |
| template<class ArrayVec1 , class ArrayVec2 > | |
| static Scalar | dot (const ArrayVec1 &inVec1, const ArrayVec2 &inVec2) |
| Computes dot product of two vectors stored in arrays of rank 1. | |
| template<class ArrayDot , class ArrayVec1 , class ArrayVec2 > | |
| static void | dot (ArrayDot &dotArray, const ArrayVec1 &inVecs1, const ArrayVec2 &inVecs2) |
| Computes dot product of vectors stored in an array of total rank 2 (array of vectors), indexed by (i0, D), or 3 (array of arrays of vectors), indexed by (i0, i1, D). | |
| static void | matvec (Scalar *matVec, const Scalar *inMat, const Scalar *inVec, const int dim) |
| Matrix-vector left multiply using contiguous data: matVec = inMat * inVec. | |
| template<class ArrayMatVec , class ArrayMat , class ArrayVec > | |
| static void | matvec (ArrayMatVec &matVecs, const ArrayMat &inMats, const ArrayVec &inVecs) |
| Matrix-vector left multiply using multidimensional arrays: matVec = inMat * inVec. | |
| template<class ArrayVecProd , class ArrayIn1 , class ArrayIn2 > | |
| static void | vecprod (ArrayVecProd &vecProd, const ArrayIn1 &inLeft, const ArrayIn2 &inRight) |
| Vector product using multidimensional arrays: vecProd = inVecLeft x inVecRight | |
Implementation of basic linear algebra functionality in Euclidean space.
Definition at line 63 of file Intrepid_RealSpaceTools.hpp.
| void Intrepid::RealSpaceTools< Scalar >::absval | ( | Scalar * | absArray, |
| const Scalar * | inArray, | ||
| const int | size | ||
| ) | [static] |
Computes absolute value of contiguous input data inArray of size size.
| absArray | [out] - output data |
| inArray | [in] - input data |
| size | [in] - size |
Definition at line 55 of file Intrepid_RealSpaceToolsDef.hpp.
| void Intrepid::RealSpaceTools< Scalar >::absval | ( | Scalar * | inoutArray, |
| const int | size | ||
| ) | [static] |
Computes absolute value of contiguous data inoutAbsArray of size size in place.
| inoutAbsArray | [in/out] - input/output data |
| size | [in] - size |
Definition at line 64 of file Intrepid_RealSpaceToolsDef.hpp.
| void Intrepid::RealSpaceTools< Scalar >::absval | ( | ArrayAbs & | absArray, |
| const ArrayIn & | inArray | ||
| ) | [static] |
Computes absolute value of an array.
| outArray | [out] - output array |
| inArray | [in] - input array |
Definition at line 74 of file Intrepid_RealSpaceToolsDef.hpp.
| void Intrepid::RealSpaceTools< Scalar >::absval | ( | ArrayInOut & | inoutAbsArray | ) | [static] |
Computes, in place, absolute value of an array.
| inoutAbsArray | [in/out] - input/output array |
Definition at line 95 of file Intrepid_RealSpaceToolsDef.hpp.
| void Intrepid::RealSpaceTools< Scalar >::add | ( | Scalar * | sumArray, |
| const Scalar * | inArray1, | ||
| const Scalar * | inArray2, | ||
| const int | size | ||
| ) | [static] |
Adds contiguous data inArray1 and inArray2 of size size:
sumArray = inArray1 + inArray2.
| sumArray | [out] - sum |
| inArray1 | [in] - first summand |
| inArray2 | [in] - second summand |
| size | [in] - size of input/output data |
Definition at line 915 of file Intrepid_RealSpaceToolsDef.hpp.
Referenced by Intrepid::CellTools< Scalar >::mapToReferenceFrameInitGuess().
| void Intrepid::RealSpaceTools< Scalar >::add | ( | Scalar * | inoutSumArray, |
| const Scalar * | inArray, | ||
| const int | size | ||
| ) | [static] |
Adds, in place, contiguous data inArray into inoutSumArray of size size:
inoutSumArray = inoutSumArray + inArray.
| inoutSumArray | [in/out] - sum / first summand |
| inArray | [in] - second summand |
| size | [in] - size of input/output data |
Definition at line 924 of file Intrepid_RealSpaceToolsDef.hpp.
| void Intrepid::RealSpaceTools< Scalar >::add | ( | ArraySum & | sumArray, |
| const ArrayIn1 & | inArray1, | ||
| const ArrayIn2 & | inArray2 | ||
| ) | [static] |
Adds arrays inArray1 and inArray2:
sumArray = inArray1 + inArray2.
| sumArray | [out] - sum |
| inArray1 | [in] - first summand |
| inArray2 | [in] - second summand |
Definition at line 934 of file Intrepid_RealSpaceToolsDef.hpp.
| void Intrepid::RealSpaceTools< Scalar >::add | ( | ArraySum & | inoutSumArray, |
| const ArrayIn & | inArray | ||
| ) | [static] |
Adds, in place, inArray into inoutSumArray:
inoutSumArray = inoutSumArray + inArray.
| inoutSumArray | [in/out] - sum/first summand |
| inArray | [in] - second summand |
Definition at line 955 of file Intrepid_RealSpaceToolsDef.hpp.
| Scalar Intrepid::RealSpaceTools< Scalar >::det | ( | const Scalar * | inMat, |
| const int | dim | ||
| ) | [static] |
Computes determinant of the square matrix inMat of size dim by dim.
| inMat | [in] - matrix |
| dim | [in] - matrix dimension |
Definition at line 635 of file Intrepid_RealSpaceToolsDef.hpp.
Referenced by Intrepid::CellTools< Scalar >::setJacobianDet().
| Scalar Intrepid::RealSpaceTools< Scalar >::det | ( | const ArrayIn & | inMat | ) | [static] |
Computes determinant of a single square matrix stored in an array of rank 2.
| inMat | [in] - array representing a single matrix, indexed by (D, D) |
Definition at line 703 of file Intrepid_RealSpaceToolsDef.hpp.
| void Intrepid::RealSpaceTools< Scalar >::det | ( | ArrayDet & | detArray, |
| const ArrayIn & | inMats | ||
| ) | [static] |
Computes determinants of matrices stored in an array of total rank 3 (array of matrices), indexed by (i0, D, D), or 4 (array of arrays of matrices), indexed by (i0, i1, D, D).
| detArray | [out] - array of determinants indexed by (i0) or (i0, i1) |
| inMats | [in] - array of matrices indexed by (i0, D, D) or (i0, i1, D, D) |
Definition at line 786 of file Intrepid_RealSpaceToolsDef.hpp.
| Scalar Intrepid::RealSpaceTools< Scalar >::dot | ( | const Scalar * | inArray1, |
| const Scalar * | inArray2, | ||
| const int | size | ||
| ) | [static] |
Computes dot product of contiguous data inArray1 and inArray2 of size size.
| inArray1 | [in] - first array |
| inArray2 | [in] - second array |
| size | [in] - size of input arrays |
Definition at line 1086 of file Intrepid_RealSpaceToolsDef.hpp.
| Scalar Intrepid::RealSpaceTools< Scalar >::dot | ( | const ArrayVec1 & | inVec1, |
| const ArrayVec2 & | inVec2 | ||
| ) | [static] |
Computes dot product of two vectors stored in arrays of rank 1.
| inVec1 | [in] - first vector |
| inVec2 | [in] - second vector |
Definition at line 1098 of file Intrepid_RealSpaceToolsDef.hpp.
| void Intrepid::RealSpaceTools< Scalar >::dot | ( | ArrayDot & | dotArray, |
| const ArrayVec1 & | inVecs1, | ||
| const ArrayVec2 & | inVecs2 | ||
| ) | [static] |
Computes dot product of vectors stored in an array of total rank 2 (array of vectors), indexed by (i0, D), or 3 (array of arrays of vectors), indexed by (i0, i1, D).
| dotArray | [out] - dot product array indexed by (i0) or (i0, i1) |
| inVecs1 | [in] - first array of vectors indexed by (i0, D) or (i0, i1, D) |
| inVecs2 | [in] - second array of vectors indexed by (i0, D) or (i0, i1, D) |
Definition at line 1120 of file Intrepid_RealSpaceToolsDef.hpp.
| void Intrepid::RealSpaceTools< Scalar >::inverse | ( | Scalar * | inverseMat, |
| const Scalar * | inMat, | ||
| const int | dim | ||
| ) | [static] |
Computes inverse of the square matrix inMat of size dim by dim.
| inverseMat | [out] - matrix inverse |
| inMat | [in] - matrix |
| dim | [in] - matrix dimension |
Definition at line 352 of file Intrepid_RealSpaceToolsDef.hpp.
Referenced by Intrepid::CellTools< Scalar >::setJacobianInv().
| void Intrepid::RealSpaceTools< Scalar >::inverse | ( | ArrayInverse & | inverseMats, |
| const ArrayIn & | inMats | ||
| ) | [static] |
Computes inverses of nonsingular matrices stored in an array of total rank 2 (single matrix), indexed by (D, D), 3 (array of matrices), indexed by (i0, D, D), or 4 (array of arrays of matrices), indexed by (i0, i1, D, D).
| inverseMats | [out] - array of inverses indexed by (D, D), (i0, D, D) or (i0, i1, D, D) |
| inMats | [in] - array of matrices indexed by (D, D), (i0, D, D) or (i0, i1, D, D) |
Definition at line 458 of file Intrepid_RealSpaceToolsDef.hpp.
| void Intrepid::RealSpaceTools< Scalar >::matvec | ( | Scalar * | matVec, |
| const Scalar * | inMat, | ||
| const Scalar * | inVec, | ||
| const int | dim | ||
| ) | [static] |
Matrix-vector left multiply using contiguous data:
matVec = inMat * inVec.
A single "column" vector inVec of size dim is multiplied on the left by a square matrix inMat of size dim by dim.
| matVec | [out] - matrix-vector product |
| inMat | [in] - the matrix argument |
| inVec | [in] - the vector argument |
| dim | [in] - matrix/vector dimension |
Definition at line 1180 of file Intrepid_RealSpaceToolsDef.hpp.
Referenced by Intrepid::CellTools< Scalar >::mapToReferenceFrameInitGuess().
| void Intrepid::RealSpaceTools< Scalar >::matvec | ( | ArrayMatVec & | matVecs, |
| const ArrayMat & | inMats, | ||
| const ArrayVec & | inVecs | ||
| ) | [static] |
Matrix-vector left multiply using multidimensional arrays:
matVec = inMat * inVec.
An array (rank 1, 2 or 3) of "column" vectors, indexed by (D), (i0, D) or (i0, i1, D), is multiplied on the left by an array (rank 2, 3 or 4) of square matrices, indexed by (D, D), (i0, D, D) or (i0, i1, D, D).
| matVec | [out] - matrix-vector product indexed by (D), (i0, D) or (i0, i1, D) |
| inMat | [in] - the matrix argument indexed by (D, D), (i0, D, D) or (i0, i1, D, D) |
| inVec | [in] - the vector argument indexed by (D), (i0, D) or (i0, i1, D) |
Definition at line 1194 of file Intrepid_RealSpaceToolsDef.hpp.
| void Intrepid::RealSpaceTools< Scalar >::scale | ( | Scalar * | scaledArray, |
| const Scalar * | inArray, | ||
| const int | size, | ||
| const Scalar | scalar | ||
| ) | [static] |
Multiplies contiguous data inArray of size size by a scalar (componentwise):
scaledArray = scalar * inArray.
| scaledArray | [out] - scaled array |
| inArray | [in] - input array |
| size | [in] - size of the input array |
| scalar | [in] - multiplier |
Definition at line 1036 of file Intrepid_RealSpaceToolsDef.hpp.
| void Intrepid::RealSpaceTools< Scalar >::scale | ( | Scalar * | inoutScaledArray, |
| const int | size, | ||
| const Scalar | scalar | ||
| ) | [static] |
Multiplies, in place, contiguous data inoutScaledArray of size size by a scalar (componentwise):
inoutScaledArray = scalar * inoutScaledArray.
| inoutScaledArray | [in/out] - input/scaled array |
| size | [in] - size of array |
| scalar | [in] - multiplier |
Definition at line 1045 of file Intrepid_RealSpaceToolsDef.hpp.
| void Intrepid::RealSpaceTools< Scalar >::scale | ( | ArrayScaled & | scaledArray, |
| const ArrayIn & | inArray, | ||
| const Scalar | scalar | ||
| ) | [static] |
Multiplies array inArray by the scalar scalar (componentwise):
scaledArray = scalar * inArray.
| scaledArray | [out] - scaled array |
| inArray | [in] - input array |
| scalar | [in] - multiplier |
Definition at line 1055 of file Intrepid_RealSpaceToolsDef.hpp.
| void Intrepid::RealSpaceTools< Scalar >::scale | ( | ArrayScaled & | inoutScaledArray, |
| const Scalar | scalar | ||
| ) | [static] |
Multiplies, in place, array inoutScaledArray by the scalar scalar (componentwise):
inoutScaledArray = scalar * inoutScaledArray.
| inoutScaledArray | [in/out] - input/output array |
| scalar | [in] - multiplier |
Definition at line 1076 of file Intrepid_RealSpaceToolsDef.hpp.
| void Intrepid::RealSpaceTools< Scalar >::subtract | ( | Scalar * | diffArray, |
| const Scalar * | inArray1, | ||
| const Scalar * | inArray2, | ||
| const int | size | ||
| ) | [static] |
Subtracts contiguous data inArray2 from inArray1 of size size:
diffArray = inArray1 - inArray2.
| diffArray | [out] - difference |
| inArray1 | [in] - minuend |
| inArray2 | [in] - subtrahend |
| size | [in] - size of input/output data |
Definition at line 975 of file Intrepid_RealSpaceToolsDef.hpp.
Referenced by Intrepid::CellTools< Scalar >::mapToReferenceFrameInitGuess().
| void Intrepid::RealSpaceTools< Scalar >::subtract | ( | Scalar * | inoutDiffArray, |
| const Scalar * | inArray, | ||
| const int | size | ||
| ) | [static] |
Subtracts, in place, contiguous data inArray from inoutDiffArray of size size:
inoutDiffArray = inoutDiffArray - inArray.
| inoutDiffArray | [in/out] - difference/minuend |
| inArray | [in] - subtrahend |
| size | [in] - size of input/output data |
Definition at line 984 of file Intrepid_RealSpaceToolsDef.hpp.
| void Intrepid::RealSpaceTools< Scalar >::subtract | ( | ArrayDiff & | diffArray, |
| const ArrayIn1 & | inArray1, | ||
| const ArrayIn2 & | inArray2 | ||
| ) | [static] |
Subtracts inArray2 from inArray1:
diffArray = inArray1 - inArray2.
| diffArray | [out] - difference |
| inArray1 | [in] - minuend |
| inArray2 | [in] - subtrahend |
Definition at line 994 of file Intrepid_RealSpaceToolsDef.hpp.
| void Intrepid::RealSpaceTools< Scalar >::subtract | ( | ArrayDiff & | inoutDiffArray, |
| const ArrayIn & | inArray | ||
| ) | [static] |
Subtracts, in place, inArray from inoutDiffArray:
inoutDiffArray = inoutDiffArray - inArray.
| inoutDiffArray | [in/out] - difference/minuend |
| inArray | [in] - subtrahend |
Definition at line 1015 of file Intrepid_RealSpaceToolsDef.hpp.
| void Intrepid::RealSpaceTools< Scalar >::transpose | ( | Scalar * | transposeMat, |
| const Scalar * | inMat, | ||
| const int | dim | ||
| ) | [static] |
Computes transpose of the square matrix inMat of size dim by dim.
| transposeMat | [out] - matrix transpose |
| inMat | [in] - matrix |
| dim | [in] - matrix dimension |
Definition at line 279 of file Intrepid_RealSpaceToolsDef.hpp.
| void Intrepid::RealSpaceTools< Scalar >::transpose | ( | ArrayTranspose & | transposeMats, |
| const ArrayIn & | inMats | ||
| ) | [static] |
Computes transposes of square matrices stored in an array of total rank 2 (single matrix), indexed by (D, D), 3 (array of matrices), indexed by (i0, D, D), or 4 (array of arrays of matrices), indexed by (i0, i1, D, D).
| transposeMats | [out] - array of transposes indexed by (D, D), (i0, D, D) or (i0, i1, D, D) |
| inMats | [in] - array of matrices indexed by (D, D), (i0, D, D) or (i0, i1, D, D) |
Definition at line 293 of file Intrepid_RealSpaceToolsDef.hpp.
| void Intrepid::RealSpaceTools< Scalar >::vecprod | ( | ArrayVecProd & | vecProd, |
| const ArrayIn1 & | inLeft, | ||
| const ArrayIn2 & | inRight | ||
| ) | [static] |
Vector product using multidimensional arrays:
vecProd = inVecLeft x inVecRight
Vector multiplication of two "column" vectors stored in arrays (rank 1, 2, or 3) indexed by (D), (i0, D) or (i0, i1, D).
| vecProd | [in] - vector product indexed by (D), (i0, D) or (i0, i1, D) |
| inLeft | [in] - left vector argument indexed by (D), (i0, D) or (i0, i1, D) |
| inRight | [in] - right vector argument indexed by (D), (i0, D) or (i0, i1, D) |
Definition at line 1260 of file Intrepid_RealSpaceToolsDef.hpp.
Referenced by Intrepid::CellTools< Scalar >::getPhysicalFaceNormals(), and Intrepid::CellTools< Scalar >::getReferenceFaceNormal().
| Scalar Intrepid::RealSpaceTools< Scalar >::vectorNorm | ( | const Scalar * | inVec, |
| const int | dim, | ||
| const ENorm | normType | ||
| ) | [static] |
Computes norm (1, 2, infinity) of the vector inVec of size dim.
| inVec | [in] - vector |
| dim | [in] - vector dimension |
| normType | [in] - norm type |
Definition at line 104 of file Intrepid_RealSpaceToolsDef.hpp.
Referenced by Intrepid::CellTools< Scalar >::mapToReferenceFrameInitGuess().
| Scalar Intrepid::RealSpaceTools< Scalar >::vectorNorm | ( | const ArrayIn & | inVec, |
| const ENorm | normType | ||
| ) | [static] |
Computes norm (1, 2, infinity) of a single vector stored in an array of rank 1.
| inVec | [in] - array representing a single vector |
| normType | [in] - norm type |
Definition at line 137 of file Intrepid_RealSpaceToolsDef.hpp.
| void Intrepid::RealSpaceTools< Scalar >::vectorNorm | ( | ArrayNorm & | normArray, |
| const ArrayIn & | inVecs, | ||
| const ENorm | normType | ||
| ) | [static] |
Computes norms (1, 2, infinity) of vectors stored in a array of total rank 2 (array of vectors), indexed by (i0, D), or 3 (array of arrays of vectors), indexed by (i0, i1, D).
| normArray | [out] - norm array indexed by (i0) or (i0, i1) |
| inVecs | [in] - array of vectors indexed by (i0, D) or (i0, i1, D) |
| normType | [in] - norm type |
Definition at line 179 of file Intrepid_RealSpaceToolsDef.hpp.
1.7.6.1