| Author |
Comment/Response |
Vital
|
04/07/03 07:23am
I want create a new list based on the list t. This list has the following structure:
t={{3159313200, 4.31, 200},
{3159315200, 4.56, 257},
{3159318000, 3.98, 342},
. . .
{3159321000, 5.12 564},
{3159322340, 4.18, 234}}.
I need to divide this list according to the first value of each inner list, like using function BinLists[...]. It is necessary to make grouping of inner lists according to the first value of each inner list. For example:
new_t={{{3159313200, 4.31, 200},
{3159315200, 4.56, 257}},
{{3159318000, 3.98, 342},
. . .
{3159321000, 5.12 564}},
{{3159322340, 4.18, 234}}}.
Please, help me, it`s urgent.
URL: , |
|