Tagged Questions
The min tag has no wiki summary.
18
votes
4answers
786 views
Generate a random number with max, min and mean(average) in Java
I need to generate random numbers with following properties.
Min should be 200
Max should be 20000
Average(mean) is 500.
Optional: 75th percentile to be 5000
Definitely it is not uniform ...
17
votes
6answers
37k views
MySQL: Select N rows, but with only unique values in one column
Given this data set:
ID Name City Birthyear
1 Egon Spengler New York 1957
2 Mac Taylor New York 1955
3 Sarah Connor Los Angeles 1959
4 ...
15
votes
7answers
9k views
MIN and MAX in C
Where are MIN and MAX defined in C, if at all?
What is the best way to implement these, as generically and type safely as possible? (Compiler extensions/builtins for mainstream compilers preferred.)
9
votes
10answers
469 views
Why Math.min() > Math.max()?
When I type in an array into the parameter of the javascript math minimum and maximum functions, it returns the correct value:
console.log( Math.min( 5 ) ); // 5
console.log( Math.max( 2 ) ); // 2
...
9
votes
2answers
488 views
C extension: <? and >? operators
I observed that there was at some point a <? and >? operator in GCC. How can I use these under GCC 4.5? Have they been removed, and if so, when?
Offset block_count = (cpfs->geo.block_size - ...
8
votes
2answers
384 views
Correct implementation of min
At time 0:43:15 in this Tech-Talk about D, The implementation of the min function is discussed. Concerns about "stability" and "extra shuffling (if values are equal)" when being used in some ...
6
votes
6answers
259 views
Minimum and maximum of the last 1000 values of the changing list
I'm creating an iterative algorithm (Monte Carlo method).
The algorithm returns a value on every iteration, creating a stream of values.
I need to analyze these values and stop the algorithm when say ...
6
votes
2answers
237 views
Best way to score current extremum in collection type
I’m currently a little tired so I might be missing the obvious.
I have a var _minVal: Option[Double], which shall hold the minimal value contained in a collection of Doubles (or None, if the ...
6
votes
11answers
3k views
Mathematically Find Max Value without Conditional Comparison
----------Updated ------------
codymanix and moonshadow have been a big help thus far. I was able to solve my problem using the equations and instead of using right shift I divided by 29. Because ...
5
votes
2answers
114 views
C: finding the maximum and minimum of the type of an arithmetic expression
I need to find the maximum and minimum of an arbitrary C expression which has no side effects. The following macros work on my machine. Will they work on all platforms? If not, can they be modified to ...
5
votes
2answers
7k views
How can I find the maximum or minimum of a multi-dimensional matrix in MATLAB?
I have a 4D array of measurements in MATLAB. Each dimension represents a different parameter for the measurement. I want to find the maximum and minimum value and the index (i.e. which parameter) of ...
5
votes
11answers
17k views
Use of min and max functions in C++
From C++, are min and max preferable over fmin and fmax? For comparing two integers, do they provide basically the same functionality?
Do you tend to use one of these sets of functions or do you ...
4
votes
2answers
88 views
Get the minimum value between several columns
I'm using SQL Server 2008;
Suppose I have a table 'X' with columns 'Date1', 'Date2', 'Dateblah', all of type DateTime.
I want to select the min value between the three columns, for example ...
4
votes
2answers
1k views
How to refresh a jQuery UI Slider after setting min or max values?
I have a ui.slider and change it's min and max values on runtime. But these changes only get reflected in the view, when I set the values afterwards too (which causes it to fire events that are not ...
4
votes
2answers
141 views
Why does select max(field) from table work so fast as compared to select min(field) from table, Oracle 9i
i ran into the chance of running a select max statement in Oracle 9i and it ran very fast.
select max(id) from audit_log;
select min(id) from audit_log;
However when running a select min, the ...
4
votes
4answers
615 views
mysql find smallest + unique id available
i have a column ID and something like 1000 items, some of then were removed like id=90, id=127, id=326
how can i make a query to look for those available ids, so i can reuse then for another item?
...
3
votes
5answers
69 views
Return min/max of multidimensional in Python?
I have a list in the form of
[ [[a,b,c],[d,e,f]] , [[a,b,c],[d,e,f]] , [[a,b,c],[d,e,f]] ... ] etc.
I want to return the minimal c value and the maximal c+f value. Is this possible?
3
votes
3answers
57 views
Auto-delete Max/Min from Array on creation
Updated Code that creates array, but ISNT outputting the min/max values. Why isnt this working and how do I get it to automatically remove the min/max value and then reoutput the array?
<?php
...
3
votes
4answers
104 views
MySQL Left Join + Min
Seemingly simple MySQL question, but I've never had to do this before..
I have two tables, items and prices, with a one-to-many relationship.
Items Table
id, name
Prices Table
id, item_id, price
...
3
votes
1answer
147 views
Get object with minimum value using extension method min()
list.Min() gets me the min value as integer. I want to get the object in List which has the min value for a certain property X. How can I do that?
3
votes
3answers
325 views
std::max() and std::min() not constexpr
A just noticed that the new standard defines min(a,b) and max(a,b) not with constexpr.
Examples from 25.4.7, [alg.min.max]:
template<class T> const T& min(const T& a, const T& b);
...
3
votes
2answers
750 views
Making javax validation error message more specific
Sorry if this question has been covered somewhere before. If it has please link me to it, I haven't been able to find a satisfactory answer as yet.
I've been looking around trying to find a way to ...
3
votes
7answers
466 views
C# arrays minimal value in specific range
Everybody!
How can I get minimal value of an int array in specific range in C#?
For example:
int[] array= new int{1,2,3,4,5,6,7,8,76,45};
And I want to get a minimal value between 3-rd and 8-th ...
3
votes
3answers
217 views
How can I get all local extrema in Perl without rolling my own?
It's not too difficult to implement, but I'd prefer code reuse if possible.
my @arr = (2,3,4,5,5,5,4,4,3,1,1,2,3,0,2,4);
my $ret = {MAXIMA=>[{INDEX=>3, VAL=>5},{INDEX=>4, ...
3
votes
4answers
247 views
Python - Minimum of a List of Instance Variables
I'm new to Python and I really love the min function.
>>>min([1,3,15])
0
But what if I have a list of instances, and they all have a variable named number?
class Instance():
def ...
3
votes
2answers
806 views
Is there an easy way to make a min heap in C++?
I'm very new to C++, and I was wondering if there was a way to make a min heap in C++ from the standard library.
Thanks,
3
votes
8answers
906 views
Fastest way to zero out low values in array?
So, lets say I have 100,000 float arrays with 100 elements each. I need the highest X number of values, BUT only if they are greater than Y. Any element not matching this should be set to 0. What ...
3
votes
5answers
2k views
Min/Max Width in IE6 without javascript?
Is it possible to get min/max width working in IE6 without the use of javascript?
On a somewhat related note, does Google Chrome not understand,
<!--[if IE 6]><!-->
...
3
votes
9answers
12k views
What's the best way to select the minimum value from multiple columns?
Given the following table in SQL Server 2005:
ID Col1 Col2 Col3
-- ---- ---- ----
1 3 34 76
2 32 976 24
3 7 235 3
4 245 1 792
What ...
2
votes
3answers
64 views
Getting the minimum of the rows in a data frame
I am working with a dataframe that has 65 variables in it. The first variable catalogs a person, and the next 64 variables indicate the geographic distance that person is from each of 64 locations. ...
2
votes
4answers
50 views
Obtain smallest value from array in Javascript?
Array justPrices has values such as:
[0] = 1.5
[1] = 4.5
[2] = 9.9.
How do I return the smallest value in the array?
2
votes
3answers
107 views
Python max and min
I'm pretty new to Python, and what makes me mad about my problem is that I feel like it's really simple.I keep getting an error in line 8. I just want this program to take the numbers the user entered ...
2
votes
4answers
189 views
Fastest min max among three floats in C
I think the question is pretty clear: I have three numbers, I have two functions, min and max.
What are the fastest implementations?
2
votes
3answers
127 views
Javascript min max
In PHP you can use this to keep a number between 2 values, minimum and maximum:
$n = min(max($n, 1), 20);
so if $n is larger than 20 it will take the value of 20.
If it's smaller than 1 it will take ...
2
votes
6answers
277 views
SQL Selecting MIN value from row data, not column data
Using SQL 2005, is there a way to select the minimum value between 5 columns within one single row of data?
So, if I have a row of data like this:
id num1 num2 num3 num4 num5
1 22 ...
2
votes
4answers
334 views
Java: finding index of maximum from slice of an array
I have a large array. I have some Java code for identifying indices for start and end points for a subset/slice of that large array. The only information items that I need to retrieve from the ...
2
votes
1answer
291 views
MingW error: 'min' is not a member of 'std'
I'm trying to convert some VC++ 6 code to a console app using only the standard libraries but am getting the following error from MingW (whatever version is supplied with the Code::Blocks 10.05 IDE):
...
2
votes
4answers
132 views
How to limit a number to be within a specified range? (Python)
I want to limit a number to be within a certain range. Currently, I am doing the following:
minN = 1
maxN = 10
n = something() #some return value from a function
n = max(minN, n)
n = min(maxN, n)
...
2
votes
1answer
365 views
Remove Max and Min values from python list of integers
I am not completely green to Python, but I am interested in learning/keeping good practices while I develop my skills.
I want to remove the high and low values from a list of numbers, which I know ...
2
votes
2answers
225 views
Perl find min value with custom compare funciton
Is there a way to find minimum value in array with custom compare function except sort it and take first item?
2
votes
3answers
308 views
excel min of a subset of a range
I have an excel sheet with two columns of interest Year and Donations. The year values are 2008,2009,2010 etc...
I would like to get the minimum of all donations for 2009. I have tried
...
2
votes
3answers
265 views
Python: Get max pair in a list of pairs with min y
How i get max pair in a list of pairs with min y?
I got this list:
L =[[1,3],[2,5],[-4,0],[2,1],[0,9]]
With max(L) i get [2,5], but i want [2,1].
2
votes
2answers
1k views
How can I make Excel's MIN function ignore zeroes in a set?
In Excel, I have the following formula =(MIN(H69,H52,H35,H18)*(1/H18))*10 that is supposed to return the MIN of a range, and divide it by the current cell (*(1/H18) ), then multiply by 10.
I am ...
2
votes
3answers
165 views
MySQL query puzzle - finding what WOULD have been the most recent date
I've looked all over and haven't yet found an intelligent way to handle this, though I feel sure one is possible:
One table of historical data has quarterly information:
CREATE TABLE Quarterly (
...
2
votes
5answers
6k views
C# - Calculate min date / max date from a List
I have a List which contains Dates :
List<string> StringDates;
[0]: "04.03.2010"
[1]: "09.03.2010"
[2]: "11.03.2010"
[3]: "12.03.2010"
[4]: "16.03.2010"
[5]: ...
2
votes
5answers
5k views
How would you define a simple “min” method in obj-c
I want to define a min and max methods in a Utils class.
@interface Utils
int min(int a, int b);
int max(int a, int b);
@end
But I don't want to have named parameters. It would be a too heavy ...
2
votes
5answers
510 views
C# arrays: finding custom minimal element
How do I specify a custom code for comparison when finding a minimal element in my Array?
For example, I have two arrays:
int[] a = new int[] {3, 6, 8};
int[] b = new int[] {9, -2, 5};
I want to ...
2
votes
3answers
14k views
Using Min, Max and Count on HQL
Does hibernate HQL queries support using select min, max, count and other sql functions?
like
select min(p.age)
from person p
Thanks
2
votes
3answers
1k views
Change min/max/close buttons theme
im currently overiding the WM_NCPAINT, WM_NCCALCSIZE and WM_NCACTIVATE to paint my own color/themed title bar for an application im working on. Now this is working great however the min, max and close ...
1
vote
3answers
54 views
SQL query the largest and smallest amount
I have a table Sales with the following fields: code, amount, index, name.
I need to get the smallest and the largest amount for a given name, and the code for which the amount is the smallest and ...