Copy - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


LinearAlgebra

  

Copy

  

construct a copy of a Matrix or Vector

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

Copy(MV)

Parameters

MV

-

Matrix or Vector to copy

Description

• 

The Copy(MV) command returns an identical copy of its argument, MV.  Because this copy is not simply another reference to MV, changes to MV or to the copy do not affect the other.

Examples

withLinearAlgebra:

vVectorrow1,2,3,datatype=float8,attributes=blue

v1.2.3.

(1)

wCopyv

w1.2.3.

(2)

attributesw

blue

(3)

w110:

v1

1.

(4)

MMatrix1,2,3,4,5,6,scan=triangularupper,shape=triangularupper

M123045006

(5)

NMatrixM

N123045006

(6)

MatrixOptionsM

shape=triangularupper,datatype=anything,storage=triangularupper,order=Fortran_order

(7)

MatrixOptionsN

shape=,datatype=anything,storage=rectangular,order=Fortran_order

(8)

PCopyM

P123045006

(9)

MatrixOptionsP

shape=triangularupper,datatype=anything,storage=triangularupper,order=Fortran_order

(10)

See Also

Matrix

Vector