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
0
votes
1 answer

object doesnt support object IE 8

when i want to minimize a extjs window it is not working in IE8. All the other browsers are fine. The error i get is pointing to a line with this in it: iframe.dom.hasOwnProperty Is this something that is not working for IE8? also there is…
Rick Weller
  • 1,258
  • 9
  • 35
  • 54
0
votes
5 answers

Minimize the size of XML files

I have a client/server application where data is exchanged in XML format. The size of data comes to around 50MB, most of which comprises of the XML tags themselves. Is there a way to take the generated XML and index the node names as…
Raheel Khan
  • 14,205
  • 13
  • 80
  • 168
0
votes
3 answers

QML Symbian hide app

My Symbian (Belle) main.qml has the standard: window.pageStack.depth <= 1 ? Qt.quit() : window.pageStack.pop() when the the back toolbar button is pressed which closes my app when pressed. I want to know what I should use to just minimize (or hide)…
Gerharddc
  • 3,921
  • 8
  • 45
  • 83
-1
votes
1 answer

How to minimize all applications except mine?

I want to minimize all application that are running in the system, except mine. How can i do this? I used this code but it works only on some computers: procedure MinAllWnd_ByShell; VAR IntHwnd: Integer; begin IntHwnd:= FindWindow('Shell_TrayWnd',…
Gabriel
  • 20,797
  • 27
  • 159
  • 293
-1
votes
1 answer

Minimize sympy system of equations of variable size

I want to minimize I2 in the following Python code. I tried to use some libraries like scipy, sympy, gekko ,... but all of them need to introduce variables explicitly while the number of variables changes with changing n in the code. On the other…
-1
votes
1 answer

LMFIT vs. Scipy Why am I getting different results in minimize

In short, I have data I'm trying to fit, and LMFIT and Scipy give 2 different solutions, with LMFIT being significantly worse. Just some detail as to what is going on: The "model" is a population weighted average. The "populations" are derived from…
samman
  • 559
  • 10
  • 29
-1
votes
1 answer

How to give an initial simplex to Scipy.minimize?

I tried to enter an initial simplex to Nelder Mead but got an exception in python, that the shape is wrong. However, I don't know and can't figure out the shape, nor do I know where to look it up. When I want to use the scipy Nelder Mead algorithm,…
-1
votes
1 answer

Minimize a function of characters inputs in R

I have the following function that I want to find the minimum: model <- Create(parameter1 = list(model = "a" , "b"), parameter2 = list(distribution = "x" , "y")) The four inputs of this function are characters, and have as possible…
moreirasd
  • 117
  • 5
-1
votes
1 answer

Program to find shortest distance from f(x) to origin

In Python (3.8) I try make a script that takes a function f(x) as input, e.g; f(x) = 1/x If we define the define y = f(x), as a line on the euclidean space, we can calculate the distance d() from the origin (0,0) for each point (x,f(x)) on the line…
Latexfan
  • 1
  • 2
-1
votes
1 answer

Using Python, how can I detect whether a program is minimized or maximized?

I am trying to detect if a window is open using win32gui.IsIconic(hWnd). What exactly do I put in to substitute hWnd? My goal is pretty simple: If a program, for example Notepad, is maximized, I want a boolean to be true, and if not, it's false. I…
-1
votes
1 answer

Minimize a function with SciPy with constraints and bounds

I have a series of accounts which charge an interest rate and every day I must decide from which to borrow money. I have a borrowing limit for every account. Obviously the easiest answer is to exhaust the cheapest rates first and so on. As we have…
-1
votes
1 answer

Can't minimize function

I just want to minimize a simple function, every example i' ve watch didnt get me anywhere. import math import numpy as np import sympy as sp from scipy.optimize import minimize import scipy.optimize as…
-1
votes
1 answer

how to set intent while application minimizes?

how to set code while minimizing the application like "onBackPressed" in android. my countdown timer is running while application is minimized, so i want to put a intent to main page while minimized.
Rince Mathew
  • 27
  • 1
  • 6
-1
votes
1 answer

How to check if form is not visible (minimized)

I am using this code to check if the form is minimized: [SecurityPermission(SecurityAction.LinkDemand, Flags = SecurityPermissionFlag.UnmanagedCode)] protected override void WndProc(ref Message m) { switch (m.Msg) { case…
Gabriel Weiss
  • 21
  • 1
  • 7
-1
votes
1 answer

Python Custering algorithm with fixed diameter and minimized count

What is the best method to cluster points of a set with a maximum diameter as threshold and as few clusters as possible? So for example having a set of gps points and a diameter threshold of 500m. How to use an algorithm to minimize the count of…
Timo
  • 21
  • 5