Questions tagged [minimum]

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

In mathematics, the minimum of a function is the smallest value that the function takes at a point either within a given neighborhood (local or relative minimum) or on the function domain in its entirety (absolute minimum).

Examples

Python

>> import numpy as np
>> np.min([0, 1, 2])
0

See also

1056 questions
-4
votes
2 answers

We are trying to find the minimum of a linked list

We are practicing for an exam and are trying to find the minimum value of a linked list in java. This algorithm keeps returning the last element of the list instead of the minimum. public class minMax { element head; public void…
HELPUS
  • 1
-4
votes
2 answers

How to get the position of minimum intensity in an image using MATLAB programming

I have a image with me. I would like to obtain and mark the position having minimum intensity in that image using MATLAB programming. I would also like to get the value of minimum intensity
Jijo L
  • 1
  • 1
-4
votes
2 answers

Minimum temp and maximum temp display using SQL script

I have a table in which minimum and maximum temperature is stored per order no and date. I want to pick the minimum temperature and maximum temperature for each day. This should be done using SQL script.
-5
votes
1 answer

Pull out the minumum value in the CSV file

I am trying to pull out all the relevant info for the lines with the minimum value in a csv file with Python. Below is my code to find out the relevant information. The minimum value is 12 when I code it spaerately. But when I put in the function…
-5
votes
1 answer

Error : TypeError: unorderable types: float() < list()

I am facing this problem TypeError: unorderable types: float() < list()". I am using same data type then also error is coming. please help me in that. i=0 min1=max(score_arr) while(i
user123456789
  • 45
  • 2
  • 11
-9
votes
1 answer

I can not delete the minimum number in the Doubly Linked List and then the next

So, I've been stuck these past three days trying to delete the minimum pointer of the doubly linked list. It always crashes at the point I use min = a.erase(min). I did research saying you "should" delete first using "delete(*min)" but it wont…
1 2 3
70
71