Top "Minimum" questions

Minimum refers to the value in a collection of values that is the least or smallest.

Find n minimum values in an array

I am using Matlab 2012a. I have an array of k cells (say 1000). I need to find the 5 lowest values …

matlab minimum minima
R getting the minimum value for each row in a matrix, and returning the row and column name

I have a matrix like so: Only in reality it is hundreds or thousands of values. What I need to …

r matrix correlation minimum
How to find the minimum value in a numpy matrix?

Hey this is a quick and easy question... How would i find the minimum value of this matrix, excluding 0? As …

python arrays matrix numpy minimum
Get the minimum and maximum values in an array column

I have an array in this format: $array = [ ['id' => 117, 'name' => 'Networking', 'count' => 16], ['id' => 188, 'name' => 'FTP', …

php arrays loops max minimum
Requiring at least one element in java variable argument list

In this code construct: public MyClass(Integer... numbers) { do_something_with(numbers[]); } is it possible to require that numbers contains …

java arguments minimum variadic-functions
Using Double.POSITIVE_INFINITY in Java to find minimum value

Simple question: will the following code work for finding the minimum value in an array of doubles (assume at least …

java double min minimum infinity
take minimum between column value and constant global value

I would like create new column for given dataframe where I calculate minimum between the column value and some global …

python numpy pandas dataframe minimum
Fetching Minimum/Maximum for each group in ActiveRecord

This is an age-old question where given a table with attributes 'type', 'variety' and 'price', that you fetch the record …

activerecord group-by aggregate-functions minimum
Java8: select min value from specific field of the objects in a list

Suppose to have a class Obj class Obj{ int field; } and that you have a list of Obj instances, i.…

java java-8 minimum java-stream
Which CMake version as the minimum?

I want to define a minimum version to CMake with "cmake_minimum_required" facility. I have seen that some project …

cmake minimum required