01:13 -!- rtoym(n=chatzill@user-0c8hpk0.cable.mindspring.com) has joined #maxima 02:50 -!- Prax01D(n=Prax01D@tor58-7-82-191.dynamic.rogerstelecom.net) has joined #maxima 04:40 -!- bjorkBSD(n=bjork@ip70-178-209-107.ks.ks.cox.net) has joined #maxima 06:52 -!- Prax01D(n=Prax01D@tor58-5-76-222.dynamic.rogerstelecom.net) has joined #maxima 09:36 -!- lisppaste4(n=lisppast@common-lisp.net) has joined #maxima 12:57 -!- Prax01D(n=Prax01D@149.99.89.38) has joined #maxima 13:13 -!- trebor_win(n=none_ask@mail.dki.tu-darmstadt.de) has joined #maxima 16:14 -!- HaraldG(n=rldprog@chello080108070152.13.11.univie.teleweb.at) has joined #maxima 18:37 -!- Prax01D(n=Prax01D@149.99.86.224) has joined #maxima 19:28 -!- shavenger(n=sha@swarm.ulb.ac.be) has joined #maxima 19:28 hi 19:29 I have a stupid question ... but I was unable to find easily the information in the doc 19:29 I'd like to put some constraints in my equations 19:29 like x >= 0 19:29 and then launch a solve (non linear system) 19:29 could you help me please ? 19:55 You'll have to wait a bit for an amswer, likely. 20:01 solve isn't able to handle inequalities afaik, so you have to filter the results manually. 20:02 Strange enough there doesn't seem to be a general function to filter a list with some predicate. Very strange. 20:02 It shouldn't be hard to write something to do that. 20:04 mmh 20:04 ok thx for your reply 20:12 I'll see what I can do by hand 20:12 see you... 20:13 Try something like: 20:13 filter(list, pred) := block([result : []], 20:13 map(lambda([x], if pred(x) then result : cons(x, result)), list), result); 20:14 To get your predicate you'll need lambda. 20:15 thank you 20:15 I'll try tat 20:15 that 20:15 No problem. 22:24 -!- HaraldG(n=rldprog@chello080108070152.13.11.univie.teleweb.at) has joined #maxima