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

Iteratively remove columns and rows from a matrix s.t. the mean value of the row and column minima is minimized

You have an i by j matrix. For the purposes of this example, take the following (very small) matrix. However, the algorithm should be fast and scalable. values <- c(2,5,3,6,7, 9,5,4,9,9, 1,5,4,8,1, 3,1,5,6,2, …
3
votes
4 answers

Minimizing a function while keeping some of the variables constant

I have a function of the form def tmp(x,n): R, s, a, T = x[0], x[1], x[2], x[3] which returns a float, after a long block of calculations. I need to minimize this function and for that I used the…
milia
  • 521
  • 8
  • 20
3
votes
1 answer

Tell scipy.optimize.minimize to fail

I'm using scipy.optimize.minimize for unrestricted optimization of an objective function which receives a couple of parameters and runs a complex numerical simulation based on these parameters. This simulation does not always converge in which case…
Nebukadnezar
  • 67
  • 2
  • 6
3
votes
4 answers

detect all windows minimized from c# application

how to detect all windows(of other applications) minimized from c# application
Suriyan Suresh
  • 2,964
  • 14
  • 51
  • 80
3
votes
3 answers

interpolate python array to minimize maximum difference between elements

What is a concise and readable way of interpolating a 1D array such that the maximum difference between elements is minimized? For instance, if I had the array [4 9 13 25] and I was allowed to add 1 more number in order to minimize the maximum…
ecoe
  • 4,994
  • 7
  • 54
  • 72
3
votes
1 answer

Minimize Delphi Application with Live Popup Menu

I'm attempting to run this in a timer: Application.Minimize; ShowWindow( Application.handle, SW_HIDE ); It's been in the code forever and we just discovered that it doesn't work when you have a popupmenu active, it doesn't minimize the MDI parent…
Peter Turner
  • 11,199
  • 10
  • 68
  • 109
3
votes
1 answer

Sending Matlab GUI into the background

I have a very annoying problem with my matlab gui. Once I start my program the gui can not be just send to the background, it pops up again an arbitrary number of times, until it decides to finally stay. I have to minimize it at least 10 times…
Chris
  • 89
  • 2
  • 8
3
votes
1 answer

programmatically minimize an application using c#

I have the following code snippet List sensitiveApps = testConnection.SelectSensitive(); foreach (string sensitiveApp in sensitiveApps) { Console.Write(sensitiveApp); // retrieve applications to minimize…
David Ten
  • 113
  • 1
  • 10
3
votes
1 answer

Eclipse e4 RCP minimize/maximize missing on view parts?

When creating an RCP application using Eclipse Juno (e4 platform), view parts do not provide the minimize/maximize toolbar actions. What is also missing is the double-click action on the view part header which would minimize and maximize the view…
Andreas Pasch
  • 125
  • 1
  • 9
3
votes
1 answer

Prevent WPF Window From Minimizing (Winkey + D, mostly)

I have a window which is supposed to act like a Windows Vista(+) gadget; its supposed to stay on the desktop, not to appear on taskbar and the alt+tab menu, but most importantly, not to get minimized. Here is its header: As its style is set to…
Tsury
  • 729
  • 1
  • 9
  • 24
3
votes
2 answers

.NET (C#) Window Minimize Event

Hey, I'm really stuck with my project here... I need to know when any open window has been minimized / restored and Handle the event in my own App. Any ideas? Edit: Musigenesis is right, i do want to know when OTHER applications are…
Gabriel
  • 83
  • 1
  • 6
3
votes
1 answer

Mathematica NMinimize runs into memory problems

I'm trying to minimize my function "FunctionToMinimize", which is defined as follows: FunctionToMinimize[a_, b_, c_, d_] := (2.35*Sqrt[ Variance[1/2* (a*#1 + b*#2 + c*#3 + d*#4) ] ] /Mean[1/2*(a*#1 + b*#2 + c*#3 + d*#4)])…
Kameehl
  • 31
  • 3
3
votes
2 answers

How can I minimize/iconify a JWindow in Java?

My app has a JWindow that needs to be minimized when the custom minimizer button clicked. Please reply if anyone knows how to minimize a JWindow. I have searched a lot but couldn't find any suitable method to minimize. I know how to minimize a…
Ahmadul Hoq
  • 705
  • 5
  • 14
3
votes
1 answer

Disable minimize or maximize when double clicked on ribbon

I use the Ribbon for WPF (2010 - Microsoft.Windows.Controls.Ribbon). How can I disable the minimize or maximize effect from the red range, when I do a double click on the tab (header)
David
  • 4,027
  • 10
  • 50
  • 102
3
votes
1 answer

How to minimize/maximize the Ribbon

I use the Ribbon for WPF (2010 - Microsoft.Windows.Controls.Ribbon). I want to create a Button, which minimize or maximize the Ribbon Tab, like in msoffice this button: How can I do that?
David
  • 4,027
  • 10
  • 50
  • 102