Tagged Questions

5
votes
2answers
710 views

List minimum in Python with None?

Is there any clever in-built function or something that will return 1 for the min() example below? (I bet there is a solid reason for it not to return anything, but in my particular case I need it to ...
4
votes
7answers
3k views

PHP Retrieve minimum and maximum values in a 2D associative array

I have an array in this format: Array ( [0] => Array ( [id] => 117 [name] => Networking [count] => 16 ) [1] => Array ...
3
votes
1answer
2k views

How to scale down a range of numbers with a known min and max value

So I am trying to figure out how to take a range of numbers and scale the values down to fit a range. The reason for wanting to do this is that I am trying to draw ellipses in a java swing jpanel. I ...
2
votes
1answer
95 views

Reflections on C++ Variadic Templated Versions of std::min() and std::max()

I need reflections on my implementations of the C++11 variadic versions of std::min, std::max. Here are my two alternatives for std::min, where std::max is implemented analogously by just replacing ...
2
votes
4answers
511 views

How do I declare MAX_DOUBLE in VB6?

According to the MSDN help for VB6 Floating-point values can be expressed as mmmEeee or mmmDeee, in which mmm is the mantissa and eee is the exponent (a power of 10). The highest positive value of ...
1
vote
1answer
409 views

Set min/max for each range handle in jQuery UI slider?

I'm using a jQuery slider where users can select a time range between 00:00 and 1d+12:00. 36 hours all together. Anyway. I would like to apply min and max values to my handles based on what they're ...
1
vote
2answers
294 views

Minimal values of X and Y coordinates in PointCollection (C#)

let's assume I have got a collection of points (PointCollection). What I want to do is to find the minimal value of X and Y coordinates among these points. Obviously one could iterate over the ...
1
vote
2answers
298 views

Is there a better way to check if a value is bigger than of type double?

double x; cin>>x; if( x > 1.7976931348623157e+308 || x < -1.7976931348623157e+308 ) { cout<<"value not in range"<<endl; exit(1); } Is there like a DOUBLE_MAX or ...
1
vote
1answer
867 views

How do I determine the maximum and minimum value for an Oracle NUMBER column?

Is there a simple formula for determining the maximum and minimum values for an Oracle NUMBER column with (p, s)?
0
votes
2answers
51 views

Maximum and Maximum difference of integers in args variable

I am writing a code that calculates the maximum number in my args variable as well as the largest difference between the highest and lowest integer in args. Currently my code looks like this: public ...
0
votes
0answers
177 views

C# ChartArea maximum and minimum y axis

I'm using ChartArea to graph a set of data points. My problem is that sometimes I get data points that all maps to 0. ChartArea will graph the points as one solid line on the x axis with three ticks ...
0
votes
1answer
271 views

find max or min in excel, with conditions

In my spreadsheet I have a column with negative and positive values. I need to get the minimum among all positive values and the maximum among all negative ones. How can I do so?
0
votes
0answers
76 views

grass: Get 2 variable with the minimum and maximum values from a raster

I am getting the minimum and maximum values from a map in Grass Gis under Linux with the next command: r.info -r map=TM.1 And I get this output: min=-0.00296721389169222 max=0.376758079668814 ...
0
votes
2answers
251 views

WM_GETMINMAXINFO does not seem to work. How to get a window's minimum and maximum possible size?

I am using MFC. I have a custom dialog that has been created from the application's resource file (designed with the Visual Studio 6 dialog designer), and I need to get the min/max info from it. I do ...
0
votes
2answers
527 views

get numbers from user & print maximum and minimum (w/o using built-in function)

I'm reviewing a python exercise which does the following : reads list of numbers til "done" gets entered. When "done" is inputted, print largest and smallest of the numbers. And it should be ...
0
votes
1answer
335 views

R solver for non linear constraints

Is there R solver function similar to solve.QP but for non linear constraints? Also, is there another generic solver for cubic or higher degree contraints and minimum/maximum functions?
0
votes
2answers
74 views

Using a Delegate with Messages

I'm learning about delegates and think I may have found a use for one. Basically what I have is a series of string properties that take in a minimum value and a maximum value, like so: string ...