The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
52 views

Find minimum of n Elements with log(n) comparisons per element

I need to write an algorithm that finds the minimum of n elements with: n-1 comparisons. Performing only log(n) comparisons per element. I thought of the selection search algorithm, but I think ...
0
votes
1answer
12 views

rrdtool: Use Consulidation-Function MIN, exclude NaN Values

i have an archive which contains the minimum duration times of messages going through an enterprise service bus. During night-time or on weekends it is possible, that there are no messages, so the ...
1
vote
3answers
51 views

Calculating the maximum/minimum value off an Array most efficiently in java

I consider two approaches for calculating the maximum/minimum of an Array. First: public class Extrema { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated ...
0
votes
1answer
27 views

Excel - getting location of a cell

I need to find the location of a specific cell in terms of its columns and rows. (C4 .. etc) In the following: http://i.imgur.com/iiRJiqc.jpg I need to check for the lowest price in a row and ...
0
votes
1answer
48 views

Maximum and minimum value of a dataset in r

Hi i am new to r and I have to solve this question below Compare the maximum and minimum values within each group (factor level) to their respective group means. What is the largest absolute ...
2
votes
1answer
70 views

Change the labels of a colorbar from increasing to decreasing values

I'd like to change the labels for the colorbar from increasing to decreasing values. When I try to do this via vmin and vmax I get the error message: minvalue must be less than or equal to ...
1
vote
3answers
30 views

I have need the N minimum (index) values in a numpy array

Hi I have an array with X amount of values in it I would like to locate the indexs of the ten smallest values. In this link they calculated the maximum effectively, How to get the N maximum values in ...
-1
votes
1answer
27 views

Facebook SDK 3.0 minimum Android OS [closed]

Do we have somewhere the reliable info about the minimum Android OS supported by Facebook SDK 3.0? I have checked on our side, it seems the Facebook SDK 3.0 does not work stable on Android FW 2.1 ...
0
votes
2answers
78 views

minimum of array of floats in python

How can I find minimum of array of floats in Python? The min() or array.min() did not work. Here is the code: import numpy as np z=np.array([[ -4.26141957e-01], [ -2.26582552e-01], [ ...
4
votes
1answer
84 views

Is there a faster way to separate the minimum and maximum of two arrays?

In [3]: f1 = rand(100000) In [5]: f2 = rand(100000) # Obvious method: In [12]: timeit fmin = np.amin((f1, f2), axis=0); fmax = np.amax((f1, f2), axis=0) 10 loops, best of 3: 59.2 ms per loop In ...
2
votes
7answers
67 views

(C) Getting the 3 minimum elements of an row in a matrix, and choose one randomly

I've a 8x8 matrix, and after choosing the row I desire, I want to get the three minimum elements of it, and choose one of this three randomly. The thing is that I'dont know how to handle those three ...
0
votes
0answers
22 views

Setting responsive height of div to be a minimum of 100% of users browsers window area

I recently put together www.changos.co.uk It at first seemed to be spot on. But I've had feedback from a few users with a 27 inch mac and there is annoyingly a bit of whitespace that shows under the ...
1
vote
1answer
69 views

Set highcharts y-axis min value to 0, unless there is negative data

I'm having an issue with highcharts where I have a number of different charts being generated by JSON calls. For the majority of these charts I need the minimum y-axis value to be set at 0, however ...
0
votes
2answers
88 views

prolog find minimum value query

If I have the facts in following format: person(name,age). How can I write a query to find the youngest person? I have tried using recursion but I kept getting stuck in infinite loops. So far from ...
1
vote
3answers
186 views

How to get minimum value from 2D array in c# and the indices of that cell?

I want to get the minimum value from 2 dimensional array [1024,9] ,and I want the position of this minimum value. Hint: the last column is flag "if flag == 0 : check this row, else : skip this row" ...
1
vote
0answers
42 views

Javascript: How can I get a browser's minimum font size?

What is the best way to get a browser's minimum font size? I whipped up the following code, which does a binary search. It works, but I would like to know if there is a standard or more efficient ...
0
votes
0answers
29 views

iScroll minimum zoom not being enforced

iScoll is working great with respects to zooming to exactly where you pinch and panning. However, after you zoom in, pan (optional), then release your fingers, then pinch to zoom out: It does not ...
0
votes
2answers
53 views

Displaying a minimum value in an array

Ok, I also need to calculate and display each height after a 5% increase using a separate 10-element array. Any ideas? Sorry about all this. This is my first time using arrays. #include ...
0
votes
2answers
46 views

Pick x smallest elements in Matlab

I have a matrix of integer values, the x axis represent different days and y axis represents hour of the day. And in each cell is a number that indicates how many hours of the day of the day ...
4
votes
1answer
89 views

Minimum or small enough

I am writing Haskell solver for simple board game. I have this function: bestMove :: Board -> (Int,Int) bestMove brd = minimumBy (comparing $ length.choices brd) (remaining brd) Basically ...
0
votes
1answer
32 views

Using XPATH to compute the minimum attribute element and add it to another attribute

My question is similar to this one, in which the author asks how to find the minimum attribute of an set of elements. I'm a beginner at xpath and I'm having trouble taking that answer and adding it ...
2
votes
1answer
162 views

minimum difference between numbers

We have K different sets of numbers. We have to choose a number from each set, so that the difference between the higher and the lower number is the minimum. Any ideas?
1
vote
1answer
45 views

How to restrict the minimum size of the window for Eclipse e4

I am making an application based on Eclipse e4 framework. I was wondering how the minimal size of the application window can be controlled. There seems no properties can be defined in e4xmi file for ...
0
votes
3answers
100 views

Is it possible to change the min and max of a HTML5 range slider according to the input of another form?

Refer to this: http://www.alainbruno.nl/form.html So, for instance, when the race selected is Human I want the minimum and maximum of the age slider to be between 10-80, but when Faela is chosen I ...
0
votes
3answers
80 views

SELECT * WHERE val = MIN ( val )?

I'm fairly new to Oracle SQL, but already it's logic is beginning to confuse me. I'm trying to select all columns from a table where a particular column PRICE has the minimum value. This works: ...
1
vote
3answers
144 views

Java: Recursively Finding the minimum element in a list

I will preface this by saying it is homework. I am just looking for some pointers. I have been racking my brain with this one, and for the life of me i am just not getting it. We are asked to find the ...
0
votes
2answers
73 views

Algorithm Olympiad : conditional minimum in array

I have an array A = [a1, a2, a3, a4, a5...] and I want 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 and positive. The runtime has to be ...
1
vote
4answers
89 views

finding minimal difference

I have an array A=[a1,a2,a3,a4,a5...] and I want 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. Would this code do the job: def ...
1
vote
1answer
125 views

JAVA - Dividing int array into n sets with minimum difference

So I am trying to figure out an algorithm for a program that would use recursion for taking an int array of x numbers and dividing it into n sets. These numbers can be both positive and negative. The ...
2
votes
3answers
148 views

In C++, is it better to cap a value using std::min or an if branch?

A very common pattern in programming is to cap a value at a maximum after some kind of update. What I'd like to know, is if there's a difference between the following two pieces of code, and if one ...
-1
votes
4answers
69 views

Python - Syntax error for taking minimum of tuple by second element

I want to create a list of tuples with first element from a list, and the second element from a function of the element of list, then find the minimum from the output of the function. The code below ...
0
votes
3answers
119 views

smallest and largest of the inputs

I was assigned to write a program that read a sequence of integer inputs and print -the smallest and largest of the inputs -and the number of even and odd inputs I figured out the first part but am ...
0
votes
1answer
215 views

C++ Find the minimum value in every row of a n*m matrix

How can I find the minimum value in every row of a n*m matrix, and put these values to a new array? I have this code so far, but it's not working properly: void min(const int t[max_city][max_bird], ...
0
votes
1answer
85 views

R: Build Apply function to find minimum of columns based on conditions in other (related) columns

With data as such below, I'm trying to reassign any of the test cols (test_A, etc.) to their corresponding time cols (time_A, etc.) if the test is true, and then find the minimum of all true test ...
1
vote
4answers
128 views

Find minimum in i-j range less than in O(j-i) using less than O(N^2) memory

Say there is a big array that containes N integers: const unsigned N = 1e12; int array[N] = { 1, 3 , 8, -5, 4, 3, -1 -6, 6, ....., N}; There should be queried many times the smallest element in the ...
0
votes
1answer
53 views

Batch File to Determine the Minumum of a String of Data in Another File

I have a csv file with a column of data (of variable length)--call this file data.csv. I need a batch file that will read in data.csv and output the minimum of its data to another file, say min.csv. ...
1
vote
3answers
62 views

return minimum point in a range of points in CSV data using AWK

I want to return the minimum y value observed within a specified range of x values in CSV x, y data using AWK in Bash. So, specifically, I may have data such as the following: xyData="10, 100 20, 200 ...
1
vote
1answer
130 views

Minimum Weight Triangulation Taking Forever

so I've been working on a program in Python that finds the minimum weight triangulation of a convex polygon. This means that it finds the weight(The sum of all the triangle perimeters), as well as the ...
0
votes
1answer
521 views

Minimum Weight Triangulation Dynamic Programming Algorithm

So, I'm trying to understand the dynamic programming algorithm for finding the minimum weighted triangulation decomposition of a convex polygon. For those of you that don't know, triangulation is ...
2
votes
1answer
385 views

Genetic algorithm: Minimum Number of Generations?

I have a Matlab script (actually a function, funModel), which I'm trying to solve with 7 integer variables via a genetic algorithm: nvars = 7; %number of variables Aineq = [1 1 1 1 1 1 1]; Aeq = ...
1
vote
1answer
180 views

Python: Minimum Sum Sublist of an Integer

Python Trouble: I am having so much trouble on how to approach this program. Can someone help me or at least give me a hint on what this program is asking? 5.37 Write function mssl() (minimum sum ...
0
votes
2answers
129 views

return the sum of the max sublist

I have to write a function that takes a list of integers and returns the maximum sum sublist of the list. An example would be: l = [4,-2,-8,5,-2,7,7,2,-6,5] returns 19 so far my code is: count = ...
1
vote
1answer
83 views

How can I check string length before insert in MySQL?

I created a table with the following statements in MySQL. CREATE TABLE Users ( UserName VARCHAR(15) NOT NULL PRIMARY KEY, Password VARCHAR(15) NOT NULL, Active Bool DEFAULT TRUE ) So I ...
0
votes
0answers
148 views

Find Minimum Recursively in MIPS

This is Homework. I have searched extensively for this subject and I am not coming up with anything or maybe I just don't know what to search for but I am struggling mightily with recursion in MIPS. ...
0
votes
4answers
143 views

Simple C++ quesiton (beginner)

I'm trying to write a function that will return the smallest value of an array. So far I have this, but all it returns is 0. I don't see how it would return 0 since I am using a for loop to cycle ...
0
votes
1answer
59 views

spotting the first local minimum of 2 column CSV data in a Bash shell script

I want to write a Bash shell script function to return the x, y coordinates of the first local minimum data point in simple 2 column CSV data. The function would take as an input a Bash variable (say ...
0
votes
0answers
155 views

Finding the minimum distance between individual random lines Matlab

I have a question as titled.I make a lets say 60 random lines and i would like to find the minimum distance between individual lines e.g for 60 random lines there will be 60*59/2=1950 cases..I have ...
0
votes
0answers
148 views

Magento, Minimum Order Amount is not working, how can I fix this?

Here's the scenario. For first time order, the minimum amount needs to be more that $400 in order to check out. When customer wants to reorder, the minimum amount needs to be more than $200 in order ...
0
votes
0answers
21 views

Finding a specific minimum greater than some known values

I am trying to find the acceptable minimum of a list of atoms. It has to be above zero and it can't be equal to some other value in the list. Here is my code. acceptablemin(X):- ...
3
votes
5answers
290 views

generate 3-d random points with minimum distance between each of them?

there. I am going to generate 10^6 random points in matlab with this particular characters. the points should be inside a sphere with radious 25, the are 3-D so we have x, y, z or r, theta, phi. there ...

1 2 3 4 5