with -
<< Notation`;
but i can't get even the sample code on the actual documentation
notebook to run!
anyone had any luck with that, or is it a bug?
Ofek
I do not get very far with the new Notation package since whenever I
tried to using Symbolize, the kernel and front end were killed. Not very
user friendly! See my previous thread on the subject [1].
Regards,
Jean-Marc
[1] "Possible bug found in Symbolize (Notation Palette)"
http://groups.google.com/group/comp.soft-sys.math.mathematica/browse_thread/thread/6aca48cd95dcbb54/d40308d9b9a301a8?lnk=gst&q=Symbolize&rnum=3#d40308d9b9a301a8
lst = {{1, 0}, {1, 1}, {2, x + x^2 + x^4}, {2, 1 + x + x^2 + x^4}, {4,
x + x^2}, {4, 1 + x + x^2} ... }
First /@ lst // Tally
will produce
{{1, 2}, {2, 2}, {4, 10}, {5, 8}, {8, 10}}
which is the number of 1's, 2's, 4's etc. as the first element of the sublists.
In a little less cryptic form,
Tally[Map[First , lst]]
Will accomplish the same thing.
Regards,
Don
Bobby
On Tue, 05 Jun 2007 05:49:51 -0500, Ofek Shilon <ofeks...@gmail.com>
wrote:
> the documentation at Compatibility/Tutorials/Utilities/Notation says
> to replace
> <<Utilites`Notation`
>
> with -
> << Notation`;
>
> but i can't get even the sample code on the actual documentation
> notebook to run!
>
> anyone had any luck with that, or is it a bug?
>
> Ofek
>
>
>