Bill Allombert on Sun, 07 Feb 2010 19:54:50 +0100


[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]

Re: forqfvec (iterative qfminim)


On Sun, Feb 07, 2010 at 07:26:19PM +0100, Bill Allombert wrote:
> Hello PARI developers,
> 
> Some example of use:
> my(s);forqfvecsmall(v,matid(8),30,s+=Vec(v));s
> ##
> my(s);forqfvecsmall(v,matid(8),,s+=Vec(v));s
> ##
> my(s);forqfvecsmall(v,matid(8),30,if(s++<10,print(v)));
> ##
> forqfvecsmall(v,matid(8),,return(Vec(v)))

Sorry, the example are:
my(s);forqfvec(v,matid(8),30,s+=Vec(v));s
my(s);forqfvec(v,matid(8),,s+=Vec(v));s
my(s);forqfvec(v,matid(8),30,if(s++<10,print(v)));
forqfvec(v,matid(8),,return(Vec(v)))

Cheers,
Bill.