cmatrix.cut

cmatrix.cut()

Cut the liste from the pivot (as double argument).

Parameters

type

Description

liste

list

The liste to cut

piv

double

The pivot value as cutter delimiter

Returns
list

The cutted list from the pivot value

Examples

>>> l=[1,2,3,4,5,6]
>>> piv=3
>>> cut(l,piv)
[3, 4, 5, 6]