python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to solve this complicated non-linear function?
The code is giving the same output as my guess value in fsolve function
import numpy as np
import math
from scipy.optimize import fsolve
def f(y):
a11 = 17.20
iv_y = np.sqrt(pi)*np.sqrt(y)*np...
peenin--
Votes: 0
Answers: 1
Extracting coefficients of non-linear equation across categorical variable
This question appears to be off-topic because it focuses on programming, debugging, or performing routine operations, or it asks about obtaining datasets. You could try the support links we maintain o...
Daniel Fishburn
Votes: 0
Answers: 1
solving system of 16 nonlinear equations with 16 unknowns
I am trying to solve a system of 16 nonlinear equations that has 16 unknowns using lsqnonlin.
my variables are all depend on other equations (exp: SegmaD is unknown and defined as (SegmaD= EpR2Teta) t...
Eline Issa
Votes: 0
Answers: 1
Solving a very large system of non-linear equations (numerically) with a unique solution
I have encountered a very large system of non-linear equations which looks like:
M'UM = A
M'VM = B
where M, U, V are unknown d*d matrices, and A and B are known d*d matrices with the following prope...
JRC
Votes: 0
Answers: 1