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

Online Help

All Products    Maple    MapleSim


Statistics

  

Join

  

join data samples

 

Calling Sequence

Parameters

Description

Options

Examples

Compatibility

Calling Sequence

Join(X, options)

Parameters

X

-

list of data sets

options

-

(optional) equation(s) of the form outputoptions=value; specify options for the Join function

Description

• 

The Join command joins the specified data into a single one- or two-dimensional data sample.

• 

The first parameter X is the list of samples; each element of this list must be an rtable (such as a Matrix or Vector) or a list. Multi-dimensional data sets will generally be converted to one-dimensional. The exception is when each data set is two-dimensional and they all have equally many columns; in that case, all data sets are put underneath each other in a Matrix.

Options

  

The options argument can contain one or more of the options shown be low.

• 

outputoptions=list -- This option provides additional rtable_options to the rtable constructor that builds the result. The supported options are datatype, attributes, and readonly; the subtype option is supported if it does not conflict with the dimension of the result.

Examples

withStatistics:

AArray1,2,3,4,5

A12345

(1)

BArraysin1,sin2,sin3

Bsin1sin2sin3

(2)

Cx,y,z|t,u,v

Cxtyuzv

(3)

interfacertablesize=15:

JoinA,B,C,outputoptions=subtype=Vectorcolumn

U1,2,2,3

U1,2,2,3

(4)

VMatrix3,2,i,ji+j+1

V344556

(5)

JoinU,V,outputoptions=readonly,datatype=float

1.2.2.3.3.4.4.5.5.6.

(6)

Compatibility

• 

The X parameter was updated in Maple 16.

See Also

Statistics

Statistics[Computation]