I have a variating number of vectors which have a linear dependency. I'd like to find the linear combination of coefficients which brings their sum to 0. For example:
a*[1;1;1]+b[2;2;2]=0
a=2, b=-1
I could use iterators, but the number of vectors is changing and can be quite large.
Thanks