Tagged Questions
The minimum tag has no wiki summary.
10
votes
1answer
535 views
Fetched Property in XCode Data Model Editor for minimum value
How do I add a Fetched Property in XCode's Data Model Editor for minimum value of one attribute??
My model:
Item (name, note, storedItem)
StoredItem (price, item)
Item 1 ---> N StoredITem ...
8
votes
9answers
1k views
Python: get key with the least value from a dictionary
If I have a Python dictionary, how do I get the key to the entry which contains the minimum value?
I was thinking about something to do with the min() function...
Given the input:
{320:1, 321:0, ...
7
votes
5answers
1k views
A two way minimum spanning tree of a directed graph
Given a directed graph with weighted edges, what algorithm can be used to give a sub-graph that has minimum weight, but allows movement from any vertex to any other vertex in the graph (under the ...
7
votes
6answers
1k views
How to get the biggest numbers out from huge amount of numbers?
I'd like to get the largest 100 elements out from a list of at least 100000000 numbers.
I could sort the entire list and just take the last 100 elements from the sorted list, but that would be very ...
6
votes
6answers
287 views
Efficient way to get index of minimum value in long vector, python
I have a long list of longitude values (len(Lon) = 420481), and another one of latitude values. I want to find the corresponding latitude to the minimum of the longitude.
I tried:
SE_Lat = [Lat[x] ...
5
votes
2answers
369 views
Number of Comparisons finding the median of 7 numbers
I can find the median with 12 comparisons. But I want to know the minimum number of comparisons and how to do it.
5
votes
2answers
708 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
4answers
116 views
Fastest way to determine the non-zero minimum
Having an array of for instance 4 integers how can one determine it's non-zero minimum - in the fastest way ?
4
votes
2answers
98 views
Algorithm to find the global minimal distance between item pairs
The items a-d is to be paired with items 0-3 in such a way that the total distance between all item pairs are minimized. For example, this matrix could describe the distance between each item in the ...
4
votes
2answers
101 views
Is there a way to check a form before submitting it to see if ANY of the checkboxes have been checked?
Is there a way to check a form before submitting it to see if ANY of the checkboxes have been checked in Javascript?
Something like...
function checkboxcheck(){
/*something in here to check ...
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
4answers
91 views
A fast algorithm to minimize a pseudo Diophantine equation
We're looking for an algorithm to solve this problem in under O(N).
given two real numbers a and b (without loss of generality you can assume they are both between 0 and 1)
Find an integer n between ...
3
votes
3answers
60 views
How to organize a MST when one node disappear?
I'm doing my research and stuck with a question:
I am having a minimum spanning tree (prim algorithm), now one node in my tree gets deleted, I wonder if there is a way i can re-organize my tree such ...
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 ...
3
votes
2answers
748 views
Minimum vs Minimal vertex covers
I am studying for an exam and one of the sample questions is as follows:
Vertex cover: a vertex cover in a graph is a set of vertices such that each edge has at least one of its two end points in ...
3
votes
2answers
656 views
Is there a standard way to represent TSQL Minimum date in ASP.NET
I want to initialize a DateTime entity to the minimum possible date in TSQL.
(as you all know its 1/1/1753)
Is there a standard way to represent this date in ASP.NET ?
I mean doing something like ...
3
votes
1answer
2k views
Set minimum iPhone OS version for app?
I'm about to publish an app on the app store, and I'm looking to set the minimum OS version as it appears in iTunes as "Requires iPhone OS 3.x or later". 2 questions:
1) Where do I set this in my ...
3
votes
3answers
2k views
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 with the minimum price for each type there is.
In SQL, we can do this by:
...
2
votes
1answer
336 views
Minimum area enclosing rectangles?
I need an idea for an algorithm to solve the following problem (I already tried some personal
solutions but they don't seem to be optimal)
If given a surface with marked and unmarked zones (in matrix ...
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
1answer
98 views
Mysql minimum function
Is there a predefined MySQL function that returns minimum of its arguments' values (MINIMUM(1,16) -> 1)?
To be more specific, I have a time-on-site column in one of my mysql tables.
Every visitor ...
2
votes
4answers
88 views
How to write this MySQL Query?
Suppose I have a table that has three integer fields and one string field (just data).
For example it looks like:
Id Category Value Data
1 1 3 ...
2 1 ...
2
votes
4answers
1k views
Finding the minimum of an array using recursion?
Ok, so I've been trying to wrap my head around recursion in Java and I can accomplish easy tasks such as sum, reversing etc. but I have been struggling to do this exercise:
I'm trying to find the ...
2
votes
2answers
926 views
How to find the index of the minimum array element?
Is there any way to rewrite this more elegant? I think, that it's a bad piece of code and should be refactored.
>> a = [2, 4, 10, 1, 13]
=> [2, 4, 10, 1, 13]
>> ...
2
votes
2answers
1k views
How can I find the minimum cut on a graph using a maximum flow algorithm?
I need to find the minimum cut on a graph. I've been reading about flow networks, but all I can find are maximum flow algorithms such as Ford-Fulkerson, push-relabel, etc. Given the max flow-min cut ...
2
votes
3answers
659 views
Setting a minimum length for textarea
I am trying to make it so that this comment form on my wordpress website can not be submitted if the user does not enter enough data into the textarea.
I wrote this for the header
<script>
...
2
votes
3answers
293 views
Finding minimum values of (properties of ) collections in C#
Given the following code from a Microsoft example:
public class EngineMeasurementCollection : Collection<EngineMeasurement>
{
public EngineMeasurementCollection()
{
Add(new ...
2
votes
1answer
116 views
In a graph, how to find the nearest node to a group of nodes?
I have an undirected, unweighted graph, which doesn't have to be planar. I also have a subset of graph's nodes (true subset) and I need to find a node not belonging to the subset, with minimum sum of ...
2
votes
1answer
168 views
Is there any way in Java to enforce a minimum window size?
Is there any way in Java to enforce a minimum window size?
The last article I can find is from 1999, and has some complicated code to mimic the behaviour...
...
2
votes
5answers
4k views
Shortest path between two nodes in a graph (Java)
I have a program with a graph whose nodes represent some processes, and the proccess computing time is the node's cost.This graph is maintainded in memory as a list of nodes and each nod has a list of ...
2
votes
4answers
510 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
45 views
Using SQL Server, how can I join records to the minimum value of all 'similar' records in the same table?
[please forgive formatting errors-- first post here and I tried earnestly to do it right]
Functionally speaking, I'm simply trying to find the items that have the lowest price in its grouping of ...
1
vote
0answers
49 views
GWT : Keep minimum size for SplitLayoutPanel
I'm working on a GWT project and I'm using the SplitLayoutPanel. My page is divided in several panels that I can resize. My problem comes from the fact I can't specify a minimum height for my panels.
...
1
vote
1answer
84 views
How to Find the Minimum Taxicab/Manhattan Distance Between Two Parallel Rectangles?
Given the coordinates of the top left corners of both rectangles, and the coordinates of the bottom right corners of both rectangles, and that the rectangles are parallel to each other, as well as the ...
1
vote
1answer
76 views
Selection of the Appropriate Similarity Metric for a Given Data Set [closed]
What are the criteria used to select from among the numerous metrics, the appropriate one to compare--i.e., assess the similarity of--the points in a given data set.
For instane, using one data set, ...
1
vote
1answer
405 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
79 views
What is the minimum number of files needed for a rails app?
I'm looking to code a rails app that will only display an index page. It will not use any database access. All functionality will be implemented using one controller and javascript. What's the minimum ...
1
vote
5answers
297 views
Finding the minimum in an unsorted array in logarithmic time
Is there an algorithmic approach to find the minimum of an unsorted array in logarithmic time ( O(logn) )? Or is it only possible in linear time? I don't want to go parallel.
Thanks
Michael
1
vote
1answer
172 views
TimePicker Minimum value Silverlight
I wan't to use a TimePicker but setting to it a minimum posible value, that the user can't choose other after that value.
Like the DisplayDateStart in DatePicker.
How!!!!
1
vote
2answers
292 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
1answer
86 views
Algorithm for checking if an Array with n-elements is a minimum heap
I'm trying to outline an algorithm to determine if my array is a minimum heap. Is there any documentation out there that could help me with this? I found a function for it on Apache's website, but it ...
1
vote
4answers
264 views
How to get all the minimum elements according to its first element of the inside list in a nested list?
Simply put! there is this list say LST = [[12,1],[23,2],[16,3],[12,4],[14,5]] and i want to get all the minimum elements of this list according to its first element of the inside list. So for the ...
1
vote
2answers
1k views
find a minimum value in an array of floats
how would one go about finding the minimum value in an array of 100 floats in python?
I have tried minindex=darr.argmin() and print darr[minindex] with import numpy (darr is the name of the array)
...
1
vote
4answers
447 views
Set minimum value of MySQL field - possible?
Quick newbie MySQL question. What would be the simplest way to ensure that the minimum value of a given field is 0?
Basically, we have a script that runs automatically and subtracts an integer value ...
1
vote
1answer
392 views
Numpy minimum in (row, column) format
How can I know the (row, column) index of the minimum of a numpy array/matrix?
For example, if A = array([[1, 2], [3, 0]]), I want to get (1, 1)
Thanks!
1
vote
2answers
297 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
2k views
ASP.NET MVC2 DataAnnotations Minimum length
Because I'm not using .net 4 I can't use StringLength.MinimumLength property. What is alternative? I suppose I should write regular expression:
[Required]
[RegularExpression("", ErrorMessage = ...
1
vote
4answers
146 views
A function to get the smaller number
I have 2 variables each containing a number (integer). I would like to sort them to have the lowest number first and the second largest. For example:
$sortedVar = getSmaller(45, 62); // Will return ...
1
vote
2answers
1k views
given 5 numbers, what is the minimum number of comparisons needed to find the median?
how do you setup minimum number of comparisons in general?
1
vote
2answers
485 views
Minimum version of Java required to run my applet
How can you determine the minimum version of Java required on a client's browser to run an applet that I've developed? I would like to do this so that I can determine, through, javascript, if the ...