python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How can I find MLE estimates for the parameters in the function below?
I have a new function given which I would like to estimate its parameters; a,b,alpha,vartheta using MLE. How do I make an estimation?
EMHL<-function(a,b,alpha,vartheta) {
(2*a*b*alpha*vartheta*
...
Bakang
Votes: 0
Answers: 1
How to find root of a function accepting error on f(x) instead of x?
I have a function like e. g.:
amountOfCalls = 0
def myFunc(x):
global amountOfCalls
amountOfCalls+=1
y = x ** 3 + x -5
return y
and want to find the root of it (i. e.: find the value...

1018307
Votes: 0
Answers: 2
model.update performance in the model
I have a question about performance of the model.update in the gurobipy library.
Let's say I have a list of objects which I want to add as a variable to the model, also I want to add a constraint to e...
Ryszard Eggink
Votes: 0
Answers: 2
Does Matlab's fmincon() do automatic gradient scaling?
I'm currently working with Matlab for a constrained nonlinear optimization problem where I supply analytic jacobians for both the objective and contraints. fmincon() is able to find a solution for thi...

Bobbybobbobbo
Votes: 0
Answers: 1