Matrix::SizeToArray Method

Overload List

#SignatureDescription
1void SizeToArray(DewArray<TCplx> &Dst) const;Sizes the array.
2void SizeToArray(DewArray<double> &Dst) const;Sizes double precision array.
3void SizeToArray(DewArray<float> &Dst) const;Size single precision array.
4void SizeToArray(DewArray<int> &Dst) const;Sizes integer array.
5void SizeToArray(DewArray<short> &Dst) const;Sizes integer array.
6void SizeToArray(DewArray<unsigned char> &Dst) const;Sizes integer array.
7void SizeToArray(DewArray2D<TCplx> &Dst) const;Sizes the Dst array to match the matrix.
8void SizeToArray(DewArray2D<double> &Dst) const;Sizes the Dst array to match the size of the matrix

Overload 1: void SizeToArray(DewArray<TCplx> &Dst) const;

Sizes the array.

#NameTypeDescription
1DstDewArray<TCplx> &
Remarks:

Sizes the Dst array so that it can hold all the values stored in the calling object. If the Matrix::Complex property is false an exception will be raised.

Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler

Overload 2: void SizeToArray(DewArray<double> &Dst) const;

Sizes double precision array.

#NameTypeDescription
1DstDewArray<double> &
Remarks:

If the Matrix::Complex property is true the Length of the Dst array will be 2*Matrix::Length.

Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler

Overload 3: void SizeToArray(DewArray<float> &Dst) const;

Size single precision array.

#NameTypeDescription
1DstDewArray<float> &
Remarks:

If the Matrix::Complex property is true the Length of the Dst array will be 2*Matrix::Length.

Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler

Overload 4: void SizeToArray(DewArray<int> &Dst) const;

Sizes integer array.

#NameTypeDescription
1DstDewArray<int> &
Remarks:

If the Matrix::Complex property is true the Length of the Dst array will be 2*Matrix::Length.

Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler

Overload 5: void SizeToArray(DewArray<short> &Dst) const;

Sizes integer array.

#NameTypeDescription
1DstDewArray<short> &
Remarks:

If the Matrix::Complex property is true the Length of the Dst array will be 2*Matrix::Length.

Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler

Overload 6: void SizeToArray(DewArray<unsigned char> &Dst) const;

Sizes integer array.

#NameTypeDescription
1DstDewArray<unsigned char> &
Remarks:

If the Matrix::Complex property is true the Length of the Dst array will be 2*Matrix::Length.

Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler

Overload 7: void SizeToArray(DewArray2D<TCplx> &Dst) const;

Sizes the Dst array to match the matrix.

#NameTypeDescription
1DstDewArray2D<TCplx> &
Remarks:

Sizes the Dst array to match the size of the matrix. An exception will be raised if the calling object is not complex.

Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler

Overload 8: void SizeToArray(DewArray2D<double> &Dst) const;

Sizes the Dst array to match the size of the matrix

#NameTypeDescription
1DstDewArray2D<double> &
Remarks:

The rows will have two times as many columns, if the calling matrix object is Complex.

Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler