fjames86 / fpoly

Manipulate dense multivariate polynomials
0 stars 0 forks source link

ffge on multiple matrices at a time #11

Closed fjames86 closed 11 years ago

fjames86 commented 11 years ago

if we need to apply ffge to a long list of matrices then it might be more efficient to write a purpose-built function to do this all at once. i.e. something like (ffge-list mat-list vec-list) and returns ((solved-mat0 solved-vec0) ...). Could add a C function to do the same, possibly getting a more reasonable speed boost than the modest one from just applying it to a single system.

fjames86 commented 11 years ago

done.