Python Forum
How to use scipy.optimization.brute for multivariable function
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to use scipy.optimization.brute for multivariable function
#1
I want to find the global minima of a two-variables function, say V(x,y,T), where (x,y) are the independent variables and `T' is the parameter. My target is to find the global minimum/ minima (minima of the function which has two variables is determined by https://en.wikipedia.org/wiki/Second_par...ative_test) of the function V(x,y,T) for a fixed value of the parameter T. I want to use the package 'scipy.optimization.brute'. At first, please confirm whether I am right or wrong.

I am pasting a sample example from (https://scipy-lectures.org/intro/scipy/a...mple2.html)

[python]
from scipy import optimize

# Global optimization
grid = (-10, 10, 0.1)
xmin_global = optimize.brute(f, (grid, ))
print("Global minima found %s" % xmin_global)
[/python]
This example is for single-variable-function. I have no idea how to put the input for the two-variables case.
Reply


Messages In This Thread
How to use scipy.optimization.brute for multivariable function - by Shiladitya - Oct-19-2020, 11:45 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Minimize function with SciPy PierreLCV 3 337 Apr-05-2024, 07:51 AM
Last Post: paul18fr
  Need an alternative to brute force optimization loop jmbonni 5 1,193 Dec-07-2023, 12:28 PM
Last Post: RockBlok
  Solving an equation by brute force within a range alexfrol86 3 2,815 Aug-09-2022, 09:44 AM
Last Post: Gribouillis
  Optimization using scipy.optimize KaneBilliot 3 1,914 Nov-30-2021, 08:03 AM
Last Post: Gribouillis
  I need advise with developing a brute forcing script fatjuicypython 11 5,096 Aug-21-2020, 09:20 PM
Last Post: Marbelous
  ModuleNotFoundError: No module named 'scipy.optimize'; 'scipy' is not a package AaronKR 1 10,289 Jul-09-2020, 02:36 AM
Last Post: bowlofred
  Password Brute Force 2skywalkers 9 5,391 Oct-18-2018, 02:35 PM
Last Post: buran
  Brute Force Password Guesser 2skywalkers 1 3,193 Oct-05-2018, 08:04 PM
Last Post: ichabod801
  Brute Force Pad Lock Guesser RedSkeleton007 4 3,964 Mar-03-2018, 07:42 AM
Last Post: RedSkeleton007
  Speeding up Brute force password guesser Gamervote 5 6,834 Jul-20-2017, 02:52 PM
Last Post: nilamo

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020