Minimum value. Smallest, tiniest, least.

learn more… | top users | synonyms

-5
votes
1answer
31 views

Finding max/min of ArrayList Java

Hey I need help finding max and minimum of my arrayList. How do i go about doing so? No matter what code I try it doesn't work out for me. I am lost and this website is denying me any ability to ...
0
votes
1answer
33 views

android edittext minmum and maximum value

I am in development of an android app.. actually i need to set a minimum and maximum value for an editext entry my minimum value is 18 and maximum is 65.I did the exact code of this package ...
0
votes
0answers
10 views

MDX for finding the time at which the the max value occured

I am new to MDX and I am trying to find a way to write it in such a way that I can get the date and time value from my datetime dimension of when a measure's max and min values occured. Like I found ...
-2
votes
0answers
60 views

getting the minimum value from a sql result column

I have a query as below: $query = " SELECT dm.*,dmv.* FROM date_market as dm,date_market_veg as dmv WHERE dm.slno = dmv.date_market_id ...
0
votes
3answers
20 views

How to exclude 0 from MIN formula Excel

i need to know how can i exclude 0 from rows and get the MIN Value. But also i need to exlude the F1 Cell. Ex: A B C D E F 1 0 18 20 0 150 = 18 but if i do this In excel with ...
1
vote
1answer
47 views

Fixed point implementation of int min

I am reading about positive and negative infinity in c++ and i am trying to implement them in a fixed point math arthimethic implementation i can see that max of a int will be equal to ...
-2
votes
1answer
38 views

Php mysql min and max price range [closed]

Hi I am wanting to create a page that enables the user to select a min and max price from a drop down menu and be display results from a database in that price range. I have my database set up just ...
-1
votes
0answers
3 views

min cost max flow with nonconst function of cost

I am trying to find solution of the problem: There is a graph, with costs of edges and given capacity to each edge, but cost of edge depends on flow through edge. I can solve this task if cost is ...
0
votes
2answers
30 views

Min function in postgresql

I am trying to find a division with the lowest population density to do so i did the following: SELECT P.edname, MIN((P.total_area*1000)/P.total2011) AS "Lowest population density" FROM ...
0
votes
4answers
51 views

Get the minimum number out of a file and print. Python

I have run into a problem with my Python program. I am trying to get a list from the file and print the lowest number. eg. showFile = open("company.txt", 'r') for line in showFile: ...
0
votes
1answer
29 views

Remove Min And Sec from countdown

I want to remove mins and sec from my countdown and add months instead.. how this can be done??? http://techcongress.net/demo/ CSS: ...
3
votes
2answers
38 views

C: rand() with min and max values including negatives

I am trying to dynamically allocate an array of doubles and set each element to a random value within a range of positive or negative numbers, but I am having difficulty. Right now, I can only figure ...
2
votes
2answers
28 views

Why does the sign bit not affect the Integer.MAX_VALUE but affects the MIN Value?

System.out.println(Integer.MAX_VALUE); System.out.println(Integer.MIN_VALUE); Prints: 2147483647 -2147483648 Why is the max value 2^31 -1 (the sign bit is 0 and does not add to the value of the ...
0
votes
2answers
31 views

How to find a given number of minimum values in a matrix in MATLAB? [duplicate]

I currently have a 4 * 5057 matrix in MATLAB called "cols". What I'm trying to do is find the k minimum values of the first row, and store them in a new matrix called "mins". So, say k was 3, I'd ...
0
votes
0answers
18 views

Select Both Sets of MIN and MAX Entries for Time Clock

I am trying to select, in one row, both the first and the last pair of Time Clock entries for each employee per day. Essentially, I am looking for the following output. EmployeeID | ClockDateOnly ...
0
votes
3answers
43 views

Python, min among first objects in lists

I have a very particular problem, I have a deck of cards. The deck is a list of lists of tuples, each internal list is a suit with card tuples (suit, value), sorted smallest to largest(2-Ace). I would ...
1
vote
1answer
36 views

Reducing tree of attributes

I have a tree of several thousand nodes, decorated by boolean attributes, something like this (attributes in parentheses): Root (x=true, y=true, z=false) Interior 1 Leaf 1 (x=false, ...
0
votes
1answer
24 views

Min.CSS files. Where does their assignment typically occur within Wordpress themes?

Someone min'ed a wordpress theme's css file, and I don't see it being referenced in the header.php file. I checked the origin file in functions, too, just to see if it was min'ed there, and added in ...
-4
votes
1answer
26 views

min of an arrayList without considering zero

I have an arrayList such as [2.3, 0.0, 1.34, 0.0, 4.3] and I want to find the minimum value of this arrayList but without considering zero in this array. It means I am looking for a function that ...
0
votes
2answers
22 views

Summing MAX and MIN values in the same column

I am trying to pull payroll data and need to add the maximum and minimum value in a column [PAYRATE] to come up with an average rate. The table can have multiple lines for a paycheck with the same ...
1
vote
2answers
51 views

SQL: not a single group function … not a GROUP BY expression

I have a number of tables detailing a shop's customers and sales, etc. I want to find the minimum sale price; i.e. a single result returned by the SQL expression. In order for the result to make ...
0
votes
3answers
59 views

Wrong Query MySQL selecting the record with oldest or newest Date

I need to know how to obtain the code of access (IdAccess) the most older (or more recent) date of access that some user (identified with IdUser) made from the table AccessTbl using different ...
2
votes
5answers
81 views

minimum of list of lists

I have a list of lists like so: [[10564, 15], [10564, 13], [10589, 18], [10637, 39], [10662, 38], [10712, 50], [10737, 15], [10762, 14], [10787, 9], [10812, 12], [10837, 45], [3, 17], [7, 21], [46, ...
2
votes
2answers
53 views

Unexpected behaviour using na.rm

This reproducible example is a very simplified version of my code: x <- c(NaN, 2, 3) #This is fine, as expected max(x) > NaN #Why does na.rm remove NaN? max(x, na.rm=TRUE) > 3 To me, NA ...
0
votes
2answers
35 views

finding minimun value of an array

from what I've learned, I should be getting the min value of the array, but instead I am getting a large negative number that doesn't exist in my array. int size; size = sizeof(array) / ...
0
votes
2answers
40 views

sql min() in where

I want to find those cases where an "rsp_ver" starts with 2.0 or more instead of 1.0. I figured I could use a conditional in the where clause to find out the IDs with rsp_ver codes over "1.0" found ...
0
votes
2answers
35 views

SQL MIN() & GROUP BY

I'm searching for a more elegant solution to a problem I'm having with MySQL MIN() used in conjunction with GROUP BY. I have two tables: products (id, group_id) product_attributes (product_id, ...
0
votes
1answer
46 views

select min on group

I have a moderatley complex query to run which i have somewhat simplified below for purpose of this question. I have 2 tables; TABLE: plan_costs id, plan_id, cost, special_cost + more ...
1
vote
0answers
117 views

Symfony2 / Doctrine2 - get sql min,max date values

My problem is when i want to get the max or the min date value between 2013-04-08,2013-04-07 and 2013-04-06, the response is always 2013-04-08 for the min and the max my script : $max_date = ...
-2
votes
1answer
48 views

Find which int was minimum in PHP [closed]

I've got 2 integers. I need to know which one has minimum value and get this value. Is there any pretty way (one function?) to do it? Now i'm doing it this way: $foo = 5; $bar = 7; $min = min($foo, ...
2
votes
1answer
48 views

prioritize positive over negative value in min python function.

Say i have a list of values: l = [1, -1] and i want to take the list value that is closer to other value, for example 0, i can go with this: min(l, key=lambda v: abs(v - 0)) # prints 1 but if i ...
0
votes
2answers
94 views

Excel Min/Max on subset within range of values

I have a excel sheet containing two columns of data, I need formulae that will return the min&max value in column2 where value in column1 is within a range (given date) ie for 03/04/2013 min ...
-1
votes
3answers
82 views

How to correct this mysql_query, use the right syntax and make it work?

I've already made a question about this here. But since i didn't get answer that helped me a lot i would like to ask again. In Database [1] Table Characters ...
-1
votes
1answer
52 views

How to subtracts values between from different dates in SQL?

Let's say that I'm using the following SQL table called TestTable: Date Value1 Value2 Value3 ... Name 2013/01/01 1 4 7 Name1 2013/01/14 6 10 ...
0
votes
1answer
193 views

PowerPivot DAX - Dynamic Ranking Per Group (Min Per Group)

I am searching for a method to utilize within Microsoft PowerPivot 2010 that will allow me to perform dynamic ranking that will automatically update the associated rank value based on filters and ...
0
votes
4answers
129 views

MySQL MIN() function returns only one record

I have a dataset as per: +----+---------------+-------+-------------+---------------------+ | id | ip | port | point_count | create_time | ...
2
votes
1answer
31 views

Finding a “local minumin” in a binary tree

Can you guys help me with some homework question i'm stuck in? A local minimum in a full binary tree is defined as a node which is smaller than all of its neighbors (neighbors = parent , left child , ...
2
votes
3answers
76 views

which.max ties method in R

which.max and which.min will return the smallest index of the max or min value if there are ties. Is there a way around this so that the largest index is returned without affecting the efficiency of ...
0
votes
4answers
56 views

How to select product that have the mimimum price out of group of categories and producers?

I have a problem that looks like trivial but I can't make it work. It's in Oracle SQL. Here is sample of the script: create table product ( product_id number primary key, name varchar(255) ); create ...
-2
votes
2answers
73 views

Algorithm for finding conditional minimal difference in array

Suppose you have an array of distinct integers : A=[a1,a2,a3,a4,a5...] I need to find two elements of the array, say A[i] and A[j] such that i is less than j and A[j]-A[i] is minimal . Is the ...
0
votes
0answers
15 views

store data into an array inside a for loop

#include <iostream> #include <stack> #include <ctime> std::stack<clock_t> tictoc_stack; void tic() { tictoc_stack.push(clock()); } void toc() { std::cout ...
0
votes
1answer
30 views

creating sql without using min

In jennifer widom's dbclass, she gives an example of getting a colleges paired up with the highest gpa of their applicants.. The sql is below select college.cname, state, gpa from college, ...
1
vote
3answers
176 views

How to Determine the Max and Min Values Read in From a Text File in Java

I am doing a homework assignment for a class, and am looking for some helpful pointers, not full solutions. Basically, I have to write a Java program that reads in a text file and lists the ...
1
vote
2answers
102 views

AWK - find min value of each row with arbitrary size

I have a file with the lines as: 5 3 6 4 2 3 5 1 4 3 2 6 5 8 .. I want to get the min on each line, so for example with the input given above, I should get: min of first line: 2 min of second ...
2
votes
3answers
115 views

Python min/max on None type

I noticed that while the 'max' function do well on None type: In [1]: max(None, 1) Out[1]: 1 'min' function doesn't return anything: In [2]: min(None, 1) In [3]: Maybe it's because there is no ...
2
votes
0answers
48 views

Python min/max - which item is selected when there are multiple? [duplicate]

Is there something in Python that guarantees that the same item is always selected from an iterable when you use min/max with a key? e.g. >>> l = ['aaaaaa', 'bbbbbb', 'cc'] >>> ...
-1
votes
1answer
108 views

Max and min tools panels extjs

I have 3 panels. I use the vbox layout. I want to maximize the panels like dockable object when I click on the tool for min and max. How can done that be done??
2
votes
2answers
216 views

Matlab, find index of minimum value with the condition that it must be negative

In a given array, I need to find the index of the minimum value in an array, but only if it is negative. For example : [1, 2, 3, 4] would return no indices and [1, 4, -7, -2] would return 3 I was ...
1
vote
1answer
80 views

Java search entire tree for the smallest value

This is not a binary search tree, and does not follow any strict rules. The only rules are that each node is a positive integer and that each node can have either no children, one left child, or two ...
2
votes
1answer
100 views

Index from accumarray with max/min (MATLAB)

I have a vector and a cell array (with repeating strings) with the same size. The cell array defines the groups. I want to find min/max values in the vector for each group. For example: value = ...

1 2 3 4 5 8