Questions tagged [minimize]

To minimize is to replace one object with another object that can restore the original when selected.

In a graphical interface, to minimize is to replace one object with another, less obtrusive object that can restore the original when selected. The original object is often a window; the minimized form is often an iconic button located in a system dock, tray or task bar.

849 questions
3
votes
1 answer

Scipy optimize unable to find the correct results

I am trying to use scipy.optimize.minimize to fit parameters for a multivariate function, however, regardless of how many noise free data points I am providing to the optimizer, the optimizer could not converge to a correct (or close) answer. I…
Susie
  • 287
  • 1
  • 13
3
votes
2 answers

Android - App Minimization Handling

I don't believe it is called minimization, but basically when the user navigates away from my game, is there an easy way to pause it? The only thing I know of is bundles, IE restoreState(Bundle savedState) The problem is, I find myself trying to all…
teynon
  • 7,540
  • 10
  • 63
  • 106
3
votes
1 answer

Parallelization of a 3D optimization problem in python

I am working on an optimization problem with scipy.optimize which is aimed at the computation of some 3D maps. Given 3 real data volumes (vol0, vol1, vol2) my aim is to estimate maps of 3 parameters (map_0, map_1, map_2) by voxel-wise fitting of…
3
votes
3 answers

Fullscreen java app minimizes when screensaver turns on

I have an app that sets a fullscreen frame but seems to minimize when the screensaver turns on. I want this app to be the only application that the users of the touchscreen kiosks can use so this is a problem. Is there anyway to prevent this?
davidahines
  • 3,976
  • 16
  • 53
  • 87
3
votes
4 answers

Override minimize of JFrame

I'm making a program with a logger. The logger has its own JFrame. I'm trying to override the reaction from clicking on the minimize-button of that frame. I would like the frame to either setVisible(false) or do the defaultCloseOperation (as i set…
Drareeg
  • 99
  • 2
  • 10
3
votes
1 answer

Algorithm for minimizing maximium product (candy and ballons)

Hello I need help with the following problem: we have m balloons and unlimited amount of candy. Some kid wants us give him ni balloons in every i day (array n). He also has a tax array b - which is tax bi on day i. If we give the kid ni balloons on…
Teodor Dyakov
  • 344
  • 2
  • 13
3
votes
1 answer

Constraint of an unknown type passed to function

Hi I am doing a minimization problem and I wanted to try the 'trust-constr' method, with scipy function optimize.minimize, to compare it with the 'SLSQP' results. Unfortunatly I don't know why when I set my method to 'trust-constr', it tells me that…
3
votes
1 answer

scipy.optimize.minimize is too slow. How can I speed up

I am converting an IDL code (written by Oleg Kochukhov) to Python. The code generates star surface map over spectral line profiles using Tikhonov or Maximum Entropy methods. I use scipy.optimize.minimize to generate map over line profiles. But…
eng
  • 85
  • 2
  • 6
3
votes
2 answers

Using fixed parameters using scipy.optimize.minimize

I am currently using scipy optimize.minimize to get the minimal value of a function with 5 parameters. I would like for four of the inputs to be put in as fixed parameters of the function and I would like the optimize.minimize to give me the value…
Dana McDowelle
  • 269
  • 1
  • 6
  • 13
3
votes
2 answers

How do I minimize all active forms in my application using VB.NET?

How do I minimize all active forms in my application with a single button click? I have multiple forms visible at a time, and I want all my active forms to minimize when I click on a single button on one of the forms. How can I achieve this?
SpongeBob SquarePants
  • 1,035
  • 12
  • 26
  • 46
3
votes
3 answers

How to minimize C++ function using boost?

so I have a function like int f(int i, int j, int c, double d) { /*...any operations with i, j, c, d affect on some return int we have*/ } Is there any thing in boost or STD that would take my function and find the input arguments that…
Rella
  • 65,003
  • 109
  • 363
  • 636
3
votes
1 answer

Add Firebug Lite to JSFiddle to start up minimized

Firebug was best development tool for web for a long time. Now that advanced well-equipped Developer Tool is shifted with every major browsers, we don't need to look for it. But sometimes while sharing JSFiddle code that prints some log to console,…
Munim Munna
  • 17,178
  • 6
  • 29
  • 58
3
votes
3 answers

Delphi 6 - TApplicationEvents.OnMinimize is not triggered by "Show Desktop"

I have a Delphi 6 Pro application that does certain things when the application is minimized. I do my work in the OnMinimize() event that belongs to a TApplicationEvents component. It works great when the Minimize button on the main window's…
Robert Oschler
  • 14,153
  • 18
  • 94
  • 227
3
votes
1 answer

L-BFGS-B does not satisfy given constraint

I try to find optimized weight values of my model by using minimize function in scipy. As seen below the code, I define my error function returning one minus f1 score of the model. def err_func(weights,x,y): undetected=0 correct=0 …
isspek
  • 133
  • 1
  • 11
3
votes
2 answers

Xlib: Create window in mimized or maximized state

Is it possible to create a Window in maximized or minimized state with Xlib? If so, how would I go about doing that?
Overv
  • 8,433
  • 2
  • 40
  • 70