2024-07-26 20:28:54 +0200 | received badge | ● Famous Question (source) |
2018-01-02 12:02:23 +0200 | received badge | ● Notable Question (source) |
2016-03-15 16:33:21 +0200 | received badge | ● Popular Question (source) |
2012-04-06 12:29:50 +0200 | commented answer | error using minimize_constrained Somebody on irc suggested: "def constraint(u): return u[2] - 1" instead of "[u02-1]" and it worked. That way constraint is a function. Thx for your help. |
2012-04-06 12:25:21 +0200 | commented question | error using minimize_constrained K and des were not causing any problems (they are stiffness matrix and right hand side of finite elements method) since even with zero matrix and zero vector I would get the same error. |
2012-04-06 11:53:10 +0200 | received badge | ● Supporter (source) |
2012-04-06 10:56:27 +0200 | asked a question | error using minimize_constrained When I use minimize_constrained(), I get the following error: It comes from the following piece of code: I don't understand why I keep getting the error for above function call (I know about global/local variables in python function calls, but definition of vector "u" makes it's elements global variables.) |