ArrayTools[Copy] - copy portion of Matrix, Vector, or Array to another
|
Calling Sequence
|
|
Copy(num, A, offsetA, skipA, B, offsetB, skipB)
|
|
Parameters
|
|
num
|
-
|
(optional); number of elements to copy
|
A
|
-
|
source; rectangular storage Matrix, Vector, or Array of any data type and ordering
|
offsetA
|
-
|
(optional); offset for source
|
skipA
|
-
|
(optional); increment for source. Can be specified only if offsetA is specified
|
B
|
-
|
target; rectangular storage Matrix, Vector, or Array of matching data type and any ordering
|
offsetB
|
-
|
(optional); offset for target
|
skipB
|
-
|
(optional); increment for target. Can be specified only if offsetB is specified
|
|
|
|
|
Description
|
|
•
|
The Copy command copies data from an existing Matrix, Vector, or Array (source) to another Matrix, Vector, or Array (target). The data types of the source and target must match, or an error results. In addition, the source and target must both have rectangular (dense) storage.
|
•
|
The additional parameters, num, offsetA, skipA, offsetB, and skipB extend Copy command usage. For example, you can copy of part of a Matrix to a smaller Matrix, copy one row of a Matrix to a column of another, or copy data from an Matrix to a entry Vector.
|
|
The use of these additional parameters is a programmer level feature, and requires detailed knowledge of the storage structure of multi-dimensional rtables under different data orderings (C_order and Fortran_order). For a description of storage under these orderings, see Fortran_order.
|
•
|
Knowledge of these storage schemes becomes required when you want to compute the num, offsetA, skipA, offsetB, and skipB values to copy part of the data from one Matrix to another.
|
•
|
The default values of the parameters are described as follows.
|
|
- offsetA and offsetB are 0 (start at the beginning)
|
|
- skipA and skipB are 1 (fill all consecutive elements)
|
|
- num is chosen so that the operation does not exceed the storage of the rtable
|
|
As an example, copying data from the third column of a C_order Matrix corresponds to accessing the elements for . If you want to copy the entire column, num, the number of elements to copy would be , the source offset would be 3-1=2, and skipA is the distance between consecutive elements (the multiplier of the above) which is . If you were to copy this column to a element row Vector , you would not need to compute and skipB, as the default values would do. The command to accomplish this would then be Copy(n,A,2,m,B) (where are fixed values corresponding to the problem).
|
|
Note: The calling sequences above can be abbreviated, as is the largest value of num that can be used without exceeding the bounds of the target Vector. For the second calling sequence, the skipA value of 1 is redundant, as 1 is the default value, so you could use the equivalent calling sequences Copy(A,2,m,B) and Copy(A,2*n,B) respectively. This is shown in the following examples.
|
•
|
This function is part of the ArrayTools package, so it can be used in the short form Copy(..) only after executing the command with(ArrayTools). However, it can always be accessed through the long form of the command by using ArrayTools[Copy](..).
|
|
|
Examples
|
|
>
|
|
Vector to Vector
>
|
|
| (1) |
>
|
|
| (2) |
Direct copy from A to B
>
|
|
>
|
|
| (3) |
Clear B and copy first 5 elements of A to B.
>
|
|
>
|
|
>
|
|
| (4) |
Clear B and copy every second element of A to first 5 elements of B.
>
|
|
>
|
|
>
|
|
| (5) |
Copying part of a C_order Matrix to a Vector
>
|
|
| (6) |
>
|
|
| (7) |
Copy first row of A to B.
>
|
|
>
|
|
| (8) |
Copy fourth row of A to B.
>
|
|
>
|
|
| (9) |
Copy third column of A to C.
>
|
|
>
|
|
>
|
|
| (10) |
Copying part of a Fortran_order Matrix to a Vector
>
|
|
| (11) |
>
|
|
| (12) |
Copy first row of A to B.
>
|
|
>
|
|
| (13) |
Copy fourth row of A to B.
>
|
|
>
|
|
| (14) |
Copy third column of A to C.
>
|
|
>
|
|
>
|
|
| (15) |
Copy all contents of Matrix to a Vector. Note that order is important here.
C_order
>
|
|
| (16) |
>
|
|
| (17) |
>
|
|
>
|
|
>
|
|
| (18) |
Fortran_order
>
|
|
| (19) |
>
|
|
>
|
|
| (20) |
|
|