-
bc.. How do I solve non-linear equations? I used sympy.solve module, it says not
a polynomial equation, can't solve.
I have the equation of the form:
exp(-x)+(exp(-x))**2-x/4
Can I solve this using…
-
```
The equation x**2+1=0 does not have real solutions, so the following line should not return any solutions
>>> import sympy as s;x = s.Symbol("x",real=True); s.solve(x**2+1,x);
[-I, I]
```
Origin…
-
bc.. If you are going to implement some stuff for solving linear equations (as
you mentioned in your recent blog post), I could provide working (yet
somewhat messy) code to do the basic stuff like LU …
-
Hi all,
I'm not sure how to do pull request in this case so let it be a new Issue.
I have implemented Milstein method for solving SME for homodyne detection scheme. For my problems it works much bet…
-
And integrate with the system described in #11
See the notes about several issues surrounding linear and "multi-linear" equations in the document [refractoriness and linearity](/brian-team/brian2/blo…
-
The test model
bie/branches/mwetter/work/bie/modelica/Buildings/HeatTransfer/Windows/BaseClasses/Examples/WindowRadiation.mo, revision 1791
has an interior shade.
When running !WindowRadiation.mos, …
-
Hi!
First, great work.
I use Algopy to solve bigger nonlinear equation systems. Therefor I need to calculate Jacobian Matrices for a gauss-newton-solver algorithm. I build the equations with Sympy a…
-
OK, the time has come. In the subcell integration stuff I'm working I'd like to be able to do
``` c++
SerialMesh my_local_mesh(MPI_COMM_SELF);
```
This is a necessary step for being able to split…