On Dec 5, 9:51 am, Xah Lee <[EMAIL PROTECTED]> wrote:
>
> For those of you who don't know linear algebra but knows coding, this
> means, we want a function whose input is a list of 3 elements say
> {x,y,z}, and output is also a list of 3 elements, say {a,b,c}, with
> the condition that
>
> a = x/Sq
On Dec 25, 5:24 am, Xah Lee wrote:
> The JavaScript example:
>
> // Javascript. By William James
> function normalize( vec ) {
> var div=Math.sqrt(vec.map(function(x) x*x).reduce(function(a,b) a+b))
> return vec.map(function(x) x/div)
>
> }
>
> is also not qualified. (it is syntax error in Spid
On Aug 16, 11:05 am, Petey Keller wrote:
> Compiler go through *great* pains
Compiler work real hard.
Compiler have heap big trouble.
--
http://mail.python.org/mailman/listinfo/python-list
On Aug 22, 1:11 pm, bolega wrote:
> sed/awk/perl:
>
> How to replace all spaces each with an underscore that occur before a
> specific string ?
>
> I really prefer a sed one liner.
>
> Example
> Input : This is my book. It is too thick to read. The author gets
> little royalty but the publisher
On Sep 26, 9:24 am, p...@informatimago.com (Pascal J. Bourguignon)
wrote:
> Xah Lee writes:
> > here's a interesting toy list processing problem.
>
> > I have a list of lists, where each sublist is labelled by
> > a number. I need to collect together the contents of all sublists
> > sharing
> > th