Изображение квадрата Дюрера

ООО АВТОМАТИКА плюс

Rambler's Top100

Рейтинг@Mail.ru

Справочная система Matrix32

DimOperation method
Выполняет заданную операцию над указанным измерением массива.

Applies to
TMatrix

Overloaded Variants
Function DimOperation(const Matrix: TMatrix; DIM: Integer; AFunc: TIntOperation): TMatrix;
Function DimOperation(const Matrix: TMatrix; DIM: Integer; AFunc: TInt64Operation): TMatrix;
Function DimOperation(const Matrix: TMatrix; DIM: Integer; AFunc: TFloatOperation): TMatrix;
Function DimOperation(const Matrix: TMatrix; DIM: Integer; AFunc: TComplexOperation): TMatrix;

Declaration
function DimOperation(const Matrix: TMatrix; DIM: Integer; AFunc: TIntOperation): TMatrix;

Description
Пример подсчета суммы элементов строк матрицы:


DimOperation Example
       A.AsString := '1, 2, 3, 4, 5; 6, 7, 8, 9, 10';
       B.DimOperation(A, A.DimCols, opSumI);
       // В результате будет сформирован такой массив: [15; 40]

Declaration
function DimOperation(const Matrix: TMatrix; DIM: Integer; AFunc: TInt64Operation): TMatrix;

Description
Пример произведения элементов в столбцах матрицы:


DimOperation Example
       A.AsString := '1, 2, 3, 4, 5; 6, 7, 8, 9, 10';
       B.DimOperation(A, A.DimCols, opSumI);
       // В результате будет сформирован такой массив: [6, 14, 24, 36, 50]

Declaration
function DimOperation(const Matrix: TMatrix; DIM: Integer; AFunc: TFloatOperation): TMatrix;

Declaration
function DimOperation(const Matrix: TMatrix; DIM: Integer; AFunc: TComplexOperation): TMatrix;

Логинов Дмитрий © 2005-2015