The SDL Component Suite is an industry leading collection of components supporting scientific and engineering computing. Please visit the SDL Web site for more information.... |
Home MathPack OpenArrays Procedures and Functions EdgeVector | |||||||||
See also: TEdgeOp | |||||||||
EdgeVector |
|||||||||
Depending on the parameter EdgeOp the function EdgeVector calculates the minimum, the maximum, the sum, the mean or the standard deviation of all columns (Orient = orHoriz) or all rows (Orient = orVert) of the array Src (versions [1] and [2]). The results are stored in the array Dest, whose size is automatically adjusted to the corresponding edge of the Src array.
Versions [3] and [4] allow you to select specific columns or rows to be processed by storing the column/row indices in the array EdgeIx. Leaving the parameter EdgeIx empty (length = 0) is a shorthand notation for including all columns/rows. Thus, for example, the statement EdgeVector (MySrc, orHoriz, eopSum, [], EdgeVec); is equivalent to EdgeVector (MySrc, orHoriz, eopSum, EdgeVec);. Please note that the indices of the columns and rows are 0-based. The function returns the following error codes: 0 ... everything is OK
|