Re: solving equation system

2006-07-17 Thread Carl Banks
TG wrote: > Sorry for the poor explanation. I'm trying to put it clear now. > > i've got A and B. I'm looking for X. I made a mistake in my equation > :-/ > > It's more like : > > A.X - B >= O > > Well, maybe it will be much more simple if I explain the underlying > problem : > > I have an array of

Re: solving equation system

2006-07-17 Thread Carl Banks
TG wrote: > Hi there. > > Anyone knows how to use numpy / scipy in order to solve this ? > > * A is an array of shape (n,) > * X is a positive float number > * B is an array of shape (n,) > * O is an array of shape (n,) containing only zeros. > > A.X - B = O > min(X) > > thanks. Looks like an inco

Re: solving equation system

2006-07-17 Thread Ben C
On 2006-07-17, TG <[EMAIL PROTECTED]> wrote: > > Ben C wrote: >> On 2006-07-17, TG <[EMAIL PROTECTED]> wrote: >> > Hi there. >> > >> > Anyone knows how to use numpy / scipy in order to solve this ? >> > >> > * A is an array of shape (n,) >> > * X is a positive float number >> > * B is an array of s

Re: solving equation system

2006-07-17 Thread Cameron Laird
In article <[EMAIL PROTECTED]>, TG <[EMAIL PROTECTED]> wrote: >Hi there. > >Anyone knows how to use numpy / scipy in order to solve this ? > >* A is an array of shape (n,) >* X is a positive float number >* B is an array of shape (n,) >* O is an array of shape (n,) containing only zeros. > >A.X - B

Re: solving equation system

2006-07-17 Thread faulal
TG wrote: > Hi there. > > Anyone knows how to use numpy / scipy in order to solve this ? > > * A is an array of shape (n,) > * X is a positive float number > * B is an array of shape (n,) > * O is an array of shape (n,) containing only zeros. > > A.X - B = O > min(X) > > thanks. -- http://mai

Re: solving equation system

2006-07-17 Thread faulal
TG wrote: > Hi there. > > Anyone knows how to use numpy / scipy in order to solve this ? > > * A is an array of shape (n,) > * X is a positive float number > * B is an array of shape (n,) > * O is an array of shape (n,) containing only zeros. > > A.X - B = O > min(X) > > thanks. -- http://mai

Re: solving equation system

2006-07-17 Thread faulal
TG wrote: > Hi there. > > Anyone knows how to use numpy / scipy in order to solve this ? > > * A is an array of shape (n,) > * X is a positive float number > * B is an array of shape (n,) > * O is an array of shape (n,) containing only zeros. > > A.X - B = O > min(X) > > thanks. -- http://mai

Re: solving equation system

2006-07-17 Thread TG
Ben C wrote: > On 2006-07-17, TG <[EMAIL PROTECTED]> wrote: > > Hi there. > > > > Anyone knows how to use numpy / scipy in order to solve this ? > > > > * A is an array of shape (n,) > > * X is a positive float number > > * B is an array of shape (n,) > > * O is an array of shape (n,) containing o

Re: solving equation system

2006-07-17 Thread Ben C
On 2006-07-17, TG <[EMAIL PROTECTED]> wrote: > Hi there. > > Anyone knows how to use numpy / scipy in order to solve this ? > > * A is an array of shape (n,) > * X is a positive float number > * B is an array of shape (n,) > * O is an array of shape (n,) containing only zeros. > > A.X - B = O > min

solving equation system

2006-07-17 Thread TG
Hi there. Anyone knows how to use numpy / scipy in order to solve this ? * A is an array of shape (n,) * X is a positive float number * B is an array of shape (n,) * O is an array of shape (n,) containing only zeros. A.X - B = O min(X) thanks. -- http://mail.python.org/mailman/listinfo/python