ColumnDrop• ColumnDrop[data, spec] drops columns specified by spec. • ColumnDrop[data, n] removes the first n columns from data. • ColumnDrop[data, -n] removes the last n columns from data. • Examples: ColumnDrop[{{1, 2, 3}, {4, 5, 6}}, 1] . • ColumnDrop[{{1, 2, 3}, {4, 5, 6}}, 2] . • ColumnDrop[{{1, 2, 3}, {4, 5, 6}}, -1] . • ColumnDrop[{{1, 2, 3}, {4, 5, 6}}, -2] . • See also: Column, ColumnTake.  Examples Using InstantCalculatorsHere are the InstantCalculators for the ColumnDrop function. Enter the parameters for your calculation and click Calculate to see the result.
Out[1]= |  |
Out[2]= |  |
Out[3]= |  |
Entering Commands DirectlyYou can paste a template for this command via the Text Input button on the ColumnDrop Function Controller. This defines a 4 4 matrix called data.
Out[4]= |  |
This returns data with the first two columns dropped.
Out[5]= |  |
This returns data with the last column dropped.
Out[6]= |  |
Clear the variable definition.
|