TMtxInt::CopyFromArray Method

Overload List

#SignatureDescription
1TMtxVecInt *CopyFromArray(const DewArray<unsigned short> &Src);Copies values from a real Src array.
2TMtxVecInt *CopyFromArray(const DewArray<unsigned short> &Src, int SrcIndex, int Index, int Len);Copies values from a 2 byte unsigned integer type Src array [SrcIndex]..[SrcIndex+Len-1] to the calling object values [Index]..[Index+len-1].
3TMtxVecInt *CopyFromArray(const DewArray<TCplx> &Src, TRounding Rounding);Copies values from a real Src array.
4TMtxVecInt *CopyFromArray(const DewArray<TCplx> &Src, TRounding Rounding, int SrcIndex, int Index, int Len);Copies values from the double precision floating point Src array [SrcIndex]..[SrcIndex+Len-1] to the calling object values [Index]..[Index+2*Len-1].
5TMtxVecInt *CopyFromArray(const DewArray<double> &Src, TRounding Rounding);Copies values from a real Src array.
6TMtxVecInt *CopyFromArray(const DewArray<double> &Src, TRounding Rounding, int SrcIndex, int Index, int Len);Copies values from the double precision floating point Src array [SrcIndex]..[SrcIndex+Len-1] to the calling object values [Index]..[Index+len-1].
7TMtxVecInt *CopyFromArray(const DewArray<float> &Src, TRounding Rounding);Copies values from a real single precision floating point Src array.
8TMtxVecInt *CopyFromArray(const DewArray<float> &Src, TRounding Rounding, int SrcIndex, int Index, int Len);Copies values from the single precision floating point Src array [SrcIndex]..[SrcIndex+Len-1] to the calling object values [Index]..[Index+len-1].
9TMtxVecInt *CopyFromArray(const DewArray<int> &Src);Copies values from an integer type Src array.
10TMtxVecInt *CopyFromArray(const DewArray<int> &Src, int SrcIndex, int Index, int Len);Copies values from a 4 byte signed integer type Src array [SrcIndex]..[SrcIndex+Len-1].
11TMtxVecInt *CopyFromArray(const DewArray<short> &Src);Copies values from an 2 byte signed integer type Src array.
12TMtxVecInt *CopyFromArray(const DewArray<short> &Src, int SrcIndex, int Index, int Len);Copies values from a 2 byte signed integer type Src array [SrcIndex]..[SrcIndex+Len-1] to the calling object values [Index]..[Index+len-1].
13TMtxVecInt *CopyFromArray(const DewArray<unsigned char> &Src);Copies values from a 1 byte unsigned integer type Src array.
14TMtxVecInt *CopyFromArray(const DewArray<unsigned char> &Src, int SrcIndex, int Index, int Len);Copies values from a 1 byte unsigned integer type Src array [SrcIndex]..[SrcIndex+Len-1] to the calling object values [Index]..[Index+len-1].
15void CopyFromArray(const DewArray<int> &Src, TMtxVecBase *Dst, const int SrcIdx, const int DstIdx, const int Len);
16void CopyFromArray(const DewArray<short> &Src, TMtxVecBase *Dst, const int SrcIdx, const int DstIdx, const int Len);
17void CopyFromArray(const DewArray<unsigned short> &Src, TMtxVecBase *Dst, const int SrcIdx, const int DstIdx, const int Len);
18void CopyFromArray(const DewArray<unsigned char> &Src, TMtxVecBase *Dst, const int SrcIdx, const int DstIdx, const int Len);
19void CopyFromArray(const DewArray<TCplx> &Src, TMtxVecInt *Dst, TRounding Rounding, const int SrcIdx, const int DstIdx, const int Len);
20void CopyFromArray(const DewArray<double> &Src, TMtxVecInt *Dst, TRounding Rounding, const int SrcIdx, const int DstIdx, const int Len);
21void CopyFromArray(const DewArray<float> &Src, TMtxVecInt *Dst, TRounding Rounding, const int SrcIdx, const int DstIdx, const int Len);
22void CopyFromArray(const DewArray2D<int> &Src);Copies the matrix from a 2D array.
23void CopyFromArray(const DewArray2D<short> &Src);Sizes the matrix to match the size of the 2D array and copies all the values.
24void CopyFromArray(const DewArray2D<unsigned char> &Src);Sizes the matrix to match the size of the 2D array and copies all the values.

Overload 1: TMtxVecInt *CopyFromArray(const DewArray<unsigned short> &Src);

Copies values from a real Src array.

#NameTypeDescription
1Srcconst DewArray<unsigned short> &
Remarks:

The size of the calling object is set implicitely. The precision is preserved.

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 2: TMtxVecInt *CopyFromArray(const DewArray<unsigned short> &Src, int SrcIndex, int Index, int Len);

Copies values from a 2 byte unsigned integer type Src array [SrcIndex]..[SrcIndex+Len-1] to the calling object values [Index]..[Index+len-1].

#NameTypeDescription
1Srcconst DewArray<unsigned short> &
2SrcIndexint
3Indexint
4Lenint
Remarks:

The size of the calling object is not changed. If the array border are overrun an exception will be raised.

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 3: TMtxVecInt *CopyFromArray(const DewArray<TCplx> &Src, TRounding Rounding);

Copies values from a real Src array.

#NameTypeDescription
1Srcconst DewArray<TCplx> &
2RoundingTRounding
Remarks:

The size of the calling object is set implicitely. The integer precision of the calling object is preserved.

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 4: TMtxVecInt *CopyFromArray(const DewArray<TCplx> &Src, TRounding Rounding, int SrcIndex, int Index, int Len);

Copies values from the double precision floating point Src array [SrcIndex]..[SrcIndex+Len-1] to the calling object values [Index]..[Index+2*Len-1].

#NameTypeDescription
1Srcconst DewArray<TCplx> &
2RoundingTRounding
3SrcIndexint
4Indexint
5Lenint
Remarks:

The size of the calling object is not changed. If the array border are overrun an exception will be raised.

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 5: TMtxVecInt *CopyFromArray(const DewArray<double> &Src, TRounding Rounding);

Copies values from a real Src array.

#NameTypeDescription
1Srcconst DewArray<double> &
2RoundingTRounding
Remarks:

The size of the calling object is set implicitely. The integer precision of the calling object is preserved.

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 6: TMtxVecInt *CopyFromArray(const DewArray<double> &Src, TRounding Rounding, int SrcIndex, int Index, int Len);

Copies values from the double precision floating point Src array [SrcIndex]..[SrcIndex+Len-1] to the calling object values [Index]..[Index+len-1].

#NameTypeDescription
1Srcconst DewArray<double> &
2RoundingTRounding
3SrcIndexint
4Indexint
5Lenint
Remarks:

The size of the calling object is not changed. If the array border are overrun an exception will be raised.

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 7: TMtxVecInt *CopyFromArray(const DewArray<float> &Src, TRounding Rounding);

Copies values from a real single precision floating point Src array.

#NameTypeDescription
1Srcconst DewArray<float> &
2RoundingTRounding
Remarks:

The size property of the calling object is set implicitely.

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 8: TMtxVecInt *CopyFromArray(const DewArray<float> &Src, TRounding Rounding, int SrcIndex, int Index, int Len);

Copies values from the single precision floating point Src array [SrcIndex]..[SrcIndex+Len-1] to the calling object values [Index]..[Index+len-1].

#NameTypeDescription
1Srcconst DewArray<float> &
2RoundingTRounding
3SrcIndexint
4Indexint
5Lenint
Remarks:

The size of the calling object is not changed. If the array border are overrun an exception will be raised.

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 9: TMtxVecInt *CopyFromArray(const DewArray<int> &Src);

Copies values from an integer type Src array.

#NameTypeDescription
1Srcconst DewArray<int> &
Remarks:

The size property of the calling object is set implicitely. The integer precision of the calling object is preserved.

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 10: TMtxVecInt *CopyFromArray(const DewArray<int> &Src, int SrcIndex, int Index, int Len);

Copies values from a 4 byte signed integer type Src array [SrcIndex]..[SrcIndex+Len-1].

#NameTypeDescription
1Srcconst DewArray<int> &
2SrcIndexint
3Indexint
4Lenint
Remarks:

Store the results to the calling object values [Index]..[Index+len-1]. The size of the calling object is not changed. If the array border are overrun an exception will be raised.

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 11: TMtxVecInt *CopyFromArray(const DewArray<short> &Src);

Copies values from an 2 byte signed integer type Src array.

#NameTypeDescription
1Srcconst DewArray<short> &
Remarks:

The size property of the calling object is set implicitely. The integer precision of the calling object is preserved.

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 12: TMtxVecInt *CopyFromArray(const DewArray<short> &Src, int SrcIndex, int Index, int Len);

Copies values from a 2 byte signed integer type Src array [SrcIndex]..[SrcIndex+Len-1] to the calling object values [Index]..[Index+len-1].

#NameTypeDescription
1Srcconst DewArray<short> &
2SrcIndexint
3Indexint
4Lenint
Remarks:

The size of the calling object is not changed. If the array border are overrun an exception will be raised.

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 13: TMtxVecInt *CopyFromArray(const DewArray<unsigned char> &Src);

Copies values from a 1 byte unsigned integer type Src array.

#NameTypeDescription
1Srcconst DewArray<unsigned char> &
Remarks:

The size property of the calling object is set implicitely.

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 14: TMtxVecInt *CopyFromArray(const DewArray<unsigned char> &Src, int SrcIndex, int Index, int Len);

Copies values from a 1 byte unsigned integer type Src array [SrcIndex]..[SrcIndex+Len-1] to the calling object values [Index]..[Index+len-1].

#NameTypeDescription
1Srcconst DewArray<unsigned char> &
2SrcIndexint
3Indexint
4Lenint
Remarks:

The size of the calling object is not changed. If the array border are overrun an exception will be raised.

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 15: void CopyFromArray(const DewArray<int> &Src, TMtxVecBase *Dst, const int SrcIdx, const int DstIdx, const int Len);

#NameTypeDescription
1Srcconst DewArray<int> &
2DstTMtxVecBase *
3SrcIdxconst int
4DstIdxconst int
5Lenconst int
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 16: void CopyFromArray(const DewArray<short> &Src, TMtxVecBase *Dst, const int SrcIdx, const int DstIdx, const int Len);

#NameTypeDescription
1Srcconst DewArray<short> &
2DstTMtxVecBase *
3SrcIdxconst int
4DstIdxconst int
5Lenconst int
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 17: void CopyFromArray(const DewArray<unsigned short> &Src, TMtxVecBase *Dst, const int SrcIdx, const int DstIdx, const int Len);

#NameTypeDescription
1Srcconst DewArray<unsigned short> &
2DstTMtxVecBase *
3SrcIdxconst int
4DstIdxconst int
5Lenconst int
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 18: void CopyFromArray(const DewArray<unsigned char> &Src, TMtxVecBase *Dst, const int SrcIdx, const int DstIdx, const int Len);

#NameTypeDescription
1Srcconst DewArray<unsigned char> &
2DstTMtxVecBase *
3SrcIdxconst int
4DstIdxconst int
5Lenconst int
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 19: void CopyFromArray(const DewArray<TCplx> &Src, TMtxVecInt *Dst, TRounding Rounding, const int SrcIdx, const int DstIdx, const int Len);

#NameTypeDescription
1Srcconst DewArray<TCplx> &
2DstTMtxVecInt *
3RoundingTRounding
4SrcIdxconst int
5DstIdxconst int
6Lenconst int
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 20: void CopyFromArray(const DewArray<double> &Src, TMtxVecInt *Dst, TRounding Rounding, const int SrcIdx, const int DstIdx, const int Len);

#NameTypeDescription
1Srcconst DewArray<double> &
2DstTMtxVecInt *
3RoundingTRounding
4SrcIdxconst int
5DstIdxconst int
6Lenconst int
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 21: void CopyFromArray(const DewArray<float> &Src, TMtxVecInt *Dst, TRounding Rounding, const int SrcIdx, const int DstIdx, const int Len);

#NameTypeDescription
1Srcconst DewArray<float> &
2DstTMtxVecInt *
3RoundingTRounding
4SrcIdxconst int
5DstIdxconst int
6Lenconst int
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 22: void CopyFromArray(const DewArray2D<int> &Src);

Copies the matrix from a 2D array.

#NameTypeDescription
1Srcconst DewArray2D<int> &
Remarks:

Sizes the matrix to match the size of the 2D array and copies all the values.

Declared in Dew::Math::TMtxInt · Dew.Math/MtxVecInt.h · Cross-compiler

Overload 23: void CopyFromArray(const DewArray2D<short> &Src);

Sizes the matrix to match the size of the 2D array and copies all the values.

#NameTypeDescription
1Srcconst DewArray2D<short> &
Declared in Dew::Math::TMtxInt · Dew.Math/MtxVecInt.h · Cross-compiler

Overload 24: void CopyFromArray(const DewArray2D<unsigned char> &Src);

Sizes the matrix to match the size of the 2D array and copies all the values.

#NameTypeDescription
1Srcconst DewArray2D<unsigned char> &
Declared in Dew::Math::TMtxInt · Dew.Math/MtxVecInt.h · Cross-compiler