The median is the 'middle' value from a set of values.
0
votes
3answers
27 views
Calculate Median in An Array - Can someone tell me what is going on in this line of code?
This is a solution for calculating the median value in an array. I get the first three lines, duh ;), but the third line is where the magic is happening. Can someone explain how the 'sorted' variable ...
0
votes
0answers
20 views
VB Image processing: Unsafe Median Filter [closed]
These days i'm trying to learn image processing, filters, etc...
I've succesfully made a Mean Filter, but i can't get the Median Filter to work properly.
Here's the code:
Public Function ...
0
votes
2answers
29 views
Dichotomize data by factor
I'm an R newbie, and I've struggled to create a dichtomized variable based on two factors (one hopes it's possible).
Let's say I have the data:
d <- data.frame (
agegroup = ...
1
vote
3answers
87 views
How to find the median of a large number of integers (they dont fit in memory)
I know the answer is using median of medians but can someone explain how to do it?
1
vote
0answers
78 views
Directional Weighted Median Filter (Image processing)
I need to implement a directional weighted median filter in Java to remove random impulse noise. I have no idea how/where to start. The algorithm is as per below:
Create a 5x5 window
Consider 4 ...
1
vote
0answers
40 views
Using MEDIAN along side MAX, MIN, and AVG functions in MySQL
I have the following MySQL query which is working perfectly:
select
count(*) as `# of Data points`,
name,
max((QNTY_Sell/QNTYDelivered)*1000) as `MAX Thousand Price`,
...
0
votes
1answer
47 views
Using a median operator to combine four initial disparity maps into one
Hi could someone please help I am using matlab to generate a disparity map. I have performed multi-wavelet transforms on two rectified stereo pairs and have used a stereo matching algorithm to combine ...
1
vote
0answers
50 views
Geometric Median: Is there a Java implementation for Weiszfeld's Algorithm?
I'm trying to calculate the geometric median for a list of 2/3D points. I've already tried different implementations, but I'm still looking for better results.
I wonder if there is a Java ...
0
votes
1answer
100 views
Efficient way to find median value of a number of RGB images
I'm playing around with a script in Python where I want to find the median of a number of images of same dimensions. That is, I wan't to take all (red, green and blue) pixels in position [x,y], and ...
0
votes
2answers
56 views
Displaying the median in an SSRS chart
I am developing a bar chart report in SSRS 2008. I simply want the bars in the bar chart to represent the median of a value from the query this is using. What is the best way to do this?
6
votes
2answers
113 views
SQL ranking query to compute ranks and median in sub groups
I want to compute the Median of y in sub groups of this simple xy_table:
x | y --groups--> gid | x | y --medians--> gid | x | y
------- ------------- ...
1
vote
0answers
35 views
Does anyone know a way to do median inside HQL?
Does anyone know a way to do median inside HQL?
I'm using SQL Server(an older version so I can't use PERCENTILE_CONT) and most of the ways I've found require over, which I can't figure out how to do ...
2
votes
1answer
94 views
How can I calculate the median of values in SQLite?
I'd like to calculate the median value in a numeric row. How can I do that in SQLite 4?
1
vote
1answer
54 views
Efficient method for finding the middle k-combination of n sorted elements
Suppose that I have a sorted array, N, consisting of n elements. Now, given k, I need a highly efficient method to generate the k-combination that would be the middle combination (if all the ...
1
vote
2answers
98 views
Efficient median calculation for small dataset in C++
I have many (hundreds of thousands, m) sets of doubles d, ~5-10 (n, constant small) long. These doubles are essentially randomly distributed. I need to get the median of each set: because m is very ...
-1
votes
2answers
237 views
Fastest way to find median in dynamically growing range
Can anyone suggest any methods or link to implementations of fast median finding for dynamic ranges in c++? For example, suppose that for iterations in my program the range grows, and I want to find ...
0
votes
1answer
54 views
Choosing the median as the pivot
I am trying to select the median as the pivot in this app but seems like I am doing something wrong. Any help will be greatly appreciated.
I get the first few numbers in order and then towards the ...
0
votes
1answer
68 views
How do I median-center my data?
I have a 1x600 vector that I have log2 transformed and now I wish to median center. Does anyone know the code for this in Matlab?
1
vote
2answers
155 views
MIT Scheme median procedure
How would you go about defining a procedure to find the median of a list without using list-ref? For example, (median '(1 2 2)) would return 2 and (median '(1 2 3 4 5 6)) would return 3.5. You can ...
1
vote
0answers
302 views
Correct implementation of the Median of two sorted arrays
I just tested myself on implementing median of two sorted arrays like described here: http://www.youtube.com/watch?v=_H50Ir-Tves.
Is this implementation correct? Thank you in advance. Katarina
PS: ...
1
vote
1answer
72 views
MySql: Count median grouped by day
I have script which count median value for all table data:
SELECT avg(t1.price) as median_val FROM (
SELECT @rownum:=@rownum+1 as `row_number`, d.price
FROM mediana d, (SELECT @rownum:=0) r
...
2
votes
1answer
89 views
How can I find the row and column of a matrix having the closest value to its mean? in R
I have a large matrix, like this one:
NCols=100
NRows=100
myMat<-matrix(runif(NCols*NRows), ncol=NCols)
I am interested in locating which row and column have the closest value to the mean or ...
1
vote
1answer
110 views
MySQL: count median value
I'm trying to count median for prices.
I founded answer how to do it here- Simple way to calculate median with MySQL, but it doesn't work for me, I get empty result.
Can anyone help?
SELECT x.price ...
3
votes
1answer
223 views
circular median filter matlab
How can I define a circular filter that acts like median filter (medfilt2), but instead of square neighborhood of [n n] , performs median on a circular neighborhood with radius r ?
I need to perform ...
0
votes
2answers
55 views
Calculating the Median Across Columns of a Table
I need to calculate the median across column values of a table that include various age ranges, and I'm having trouble finding the answer to my problem. The table is structured as follows:
ID 0-5 ...
0
votes
1answer
48 views
How to order list by median?
I'm quite new to R and having some problems understanding the reorder function.
Lets say i have a list with 3 vectors like:
myList <- (c(7,5,2),c(2,3,4),c(1,1,1))
and I want my list to be ...
-7
votes
2answers
110 views
Given that integers are read from a data stream. Find median of elements read so for in efficient way [closed]
Can we use AVL tree for this, so that root element is the median at any point
1
vote
2answers
137 views
Displaying result of mysql query
I have managed to use other questions on here in order to find the median result in my table, but now I am unsure of how to print this result.
This is my PHP:
$query = "SELECT x.price
...
1
vote
2answers
223 views
Calculating Median in Ruby
How do I calculate the median of an array of numbers using Ruby?
I am a beginner and within the progress of my learning I am trying to stick to what has already been taught. Thus the other questions ...
0
votes
0answers
72 views
How do you find median in a 2D sorted array?
Lets say you have a Matrix of numbers that are sorted across rows as well as column.
How do you find the median.
I searched on net and found lot of answers like:
There is an algorithm to find ...
1
vote
1answer
321 views
CUDA Median filter not working properly
I took it upon myself to learn CUDA, and tried to implement a simple median filter for image processing. This is what I came up with, but I can't seem to get any good results with the images that come ...
1
vote
1answer
50 views
How to compute median value of sales figures?
In MySQL while there is an AVG function, there is no Median. So I need to create a way to compute Median value for sales figures.
I understand that Median is the middle value. However, it isn't clear ...
2
votes
1answer
207 views
Median of a frequency distribution
I want to calculate the median of a frequency distribution for a large number of samples. Each of the samples have a number of classes (3 in the example) and their respective frequencies. Each of the ...
3
votes
0answers
65 views
Calculatng median for every hourly time slice in a temporal database in PostgreSQL
I am working on temporal database.
I need to accomplish aggregation in the time series data.
I have supposed to find instantaneous hours which can be Hour:00, Hour:01 or Hour-1:59 and extracting the ...
0
votes
1answer
230 views
Writing a function to find the median, of a vector of ints
I am trying to write a second function to calculate a vector of integers which is in the main function. My vector is set up like this.
int inputinfo;
cout << "\nPlease enter in scores: ";
cout ...
1
vote
1answer
106 views
Running Median Curve instead of LOWESS
I'm currently working on modifying some R-code I got provided to fit my needs.
The situation is the following:
We are plotting ~200 lines.
They then used LOWESS to get a best-fit curve.
It looks ...
1
vote
1answer
171 views
How do I calculate the k nearest numbers to the median?
I have an array of n pairwise different elements and a number k with 1<=k<=n.
Now I am looking for an algorithm calculating the k numbers with the minimal absolute difference to the median of ...
1
vote
3answers
80 views
Convert array into array of medians
I am pondering the solution to the following problem: I have a large array of integers (in even tougher case a stream of integers) and I want to convert that array into and array of medians, tht is it ...
-3
votes
2answers
164 views
Median Filtering, window size 3,5,7 with C
I want to apply Median Filtering on a black & white 256x256 image with window size 3, 5 and 7...
I can't find a sort algorithm with which I can work with.
Can you help me and give me some ideas?
0
votes
0answers
41 views
What is the time complexity of finding mode, median and standard deviation
I have a big array of 32 bit integer numbers. What is the time complexity I can calculate the mode, median, and standard deviation of the list?
If any reference is possible for analyzing the ...
0
votes
1answer
71 views
My mySQL call is only returning one value to average where it should be returning all
This is my mySQL statement :
SELECT DATE(x.created_at), AVG(TIMEDIFF(y.created_at, x.created_at)/60/60)
FROM
(SELECT *
FROM events a
WHERE a.created_at > ...
5
votes
4answers
143 views
Python: Replacing values in an array
I have a 1 dimensional data set with some no data values which are set as 9999. Here is an extract as it is quite long:
this_array = [ 4, 4, 1, 9999, 9999, 9999, -5, -4, ... ]
I would ...
2
votes
2answers
302 views
Balancing KD Tree
So when balancing a KD tree you're supposed to find the median and then put all the elements that are less on the left subtree and those greater on the right. But what happens if you have multiple ...
5
votes
1answer
219 views
Boxplot in R with only median visible
I want to plot only median for my two dataset. It can be also done using segments function in R but I don't know how. So, I decided using boxplot function but still couldn't figure out how to hide ...
2
votes
3answers
266 views
Finding the middle number(s) of an arrayList
Given the Intgers:
1)ArrayList1: 3456
2) ArrayList2: 78910
What would be the best way to find the middle numbers if these were imputed as integers of an ArrayList?
I was thinking ...
0
votes
0answers
33 views
calculating adjusted median in R [duplicate]
Possible Duplicate:
Is there a weighted.median() function for R?
I have the following data on energy consumption of buildings. The adj column is the estimated number of buildings in the ...
1
vote
1answer
759 views
Median of 2 sorted arrays of different lengths
How can one find a median of 2 sorted arrays A and B which are of length m and n respectively.
I have searched, but most the algorithms assume that both arrays are of same size. I want to know how can ...
0
votes
1answer
233 views
How is the pattern used in medianBlur in Opencv?
I was reading about median filters in John C. Russ - The Image Processing Handbook, Sixth Edition, and in his book he describes the possible shape in the neighbouring pixels, which could be, for ...
0
votes
1answer
298 views
median in R need numeric data
I was trying to compute the median of a given vector, but when I tried I kept on getting an error:
median(returns)
Error in median.default(returns) : need numeric data
> returns
[1] 0.001262733 ...
0
votes
3answers
120 views
Finding the median [duplicate]
Possible Duplicate:
Efficiently finding the ranks of elements in an array?
If I have an array of elements A [0 to 15], and I know that the median is in the range A[8..11]. How can I find ...



