Top "Max" questions

Maximum value.

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 …

c++ c max min
How might I find the largest number contained in a JavaScript array?

I have a simple JavaScript Array object containing a few numbers. [267, 306, 108] Is there a function that would find the largest …

javascript algorithm arrays max
SQL not a single-group group function

When I run the following SQL statement: SELECT MAX(SUM(TIME)) FROM downloads GROUP BY SSN It returns the maximum …

sql oracle group-by sum max
How to find the highest value of a column in a data frame in R?

I have the following data frame which I called ozone: Ozone Solar.R Wind Temp Month Day 1 41 190 7.4 67 5 1 2 36 118 8.0 72 5 2 3 12 149 12.6 74 5 3 4 18 313 11.5 62 5 4 5 NA NA 14.3 56 5 5 6 28 NA 14.9 66 5 6 7 23 299 8.6 65 5 7 8 19 99 13.8 59 5 8 9 8 19 20.1 61 5 9 …

r max
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 …

math range scaling max minimum
What is the maximum float in Python?

I think the maximum integer in python is available by calling sys.maxint. What is the maximum float or long …

python int long-integer max
How to get the index of a maximum element in a NumPy array along one axis

I have a 2 dimensional NumPy array. I know how to get the maximum values over axes: >>> a = …

python numpy max indices
Check if all values in list are greater than a certain number

my_list1 = [30,34,56] my_list2 = [29,500,43] How to I check if all values in list are >= 30? my_list1 should work and …

python list function max
numpy max vs amax vs maximum

numpy has three different functions which seem like they can be used for the same things --- except that numpy.…

python numpy math max
How many socket connections possible?

Has anyone an idea how many tcp-socket connections are possible on a modern standard root server? (There is in general …

linux sockets tcp max server-hardware