Tagged Questions
The sampling tag has no wiki summary.
13
votes
7answers
1k views
Algorithms for determining the key of an audio sample
I am interested in determining the musical key of an audio sample. How would (or could) an algorithm go about trying to approximate the key of a musical audio sample?
Antares Autotune and Melodyne ...
6
votes
7answers
247 views
name of algorithm related to load balancing / re-distribution
Given an array [x1, x2, x3, ..., xk ] where xi is the number of items in box i,
how can I redistribute the items so that no box contains more than N items. N is close to sum(xi)/k -- That is, N is ...
6
votes
1answer
101 views
Is there a fast way to sample from a subset of GLn?
The rules of this problem are fairly specific because I'm actually looking at a subset of GLn, where the row and column vectors must have a certain form (call these vectors valid -- examples below), ...
6
votes
2answers
459 views
How to equidistant resample a line (or curve)?
I have a line l_1 given with a point series p_1,...,p_n. I now want a new line l_2 having k points: q_1,...,q_k. But for all i \in {1,...,k-1}: abs( q_i - q_i+1 ) = const, meaning the segments of l_2 ...
5
votes
5answers
93 views
Randomly sampling unique subsets of an array
If I have an array:
a = [1,2,3]
How do I randomly select subsets of the array, such that the elements of each subset are unique? That is, for a the possible subsets would be:
[]
[1]
[2]
[3]
[1,2]
...
5
votes
2answers
155 views
Randomly selecting values from an existing matrix after adding a vector (in R)
Thank you so much for your help in advance!
I am trying to modify an existing matrix such that, when a new line is added to the matrix, it removes values from the preexisting matrix.
For example, I ...
5
votes
5answers
1k views
Take n random elements from a List<E>?
How can I take n random elements from an ArrayList<E>? Ideally, I'd like to be able to make successive calls to the take() method to get another x elements, without replacement.
5
votes
4answers
194 views
Lazily sample random results in python
Python question. I'm generating a large array of objects, which I only need to make a small random sample. Actually generating the objects in question takes a while, so I wonder if it would be ...
4
votes
2answers
108 views
drawing a stratified sample in R
Designing my stratified sample
library(survey)
design <- svydesign(id=~1,strata=~Category, data=billa, fpc=~fpc)
So far so good, but how can I draw now a sample in the same way I was able for ...
4
votes
2answers
79 views
What is the fastest way to sample slices of numpy arrays?
I have a 3D (time, X, Y) numpy array containing 6 hourly time series for a few years. (say 5). I would like to create a sampled time series containing 1 instance of each calendar day randomly taken ...
4
votes
3answers
1k views
Resampling of two data sets of different length in MATLAB
I have two vectors: sensorA of length 927 and sensorB of length 1250. I would like to make them of the same length. The resample() function in MATLAB is very noisy at the edges and I need atleast ...
4
votes
5answers
300 views
Minimising interpolation error between two data sets
In the top of the diagrams below we can see some value (y-axis) changing over time (x-axis).
As this happens we are sampling the value at different and unpredictable times, also we are alternating ...
3
votes
1answer
54 views
Set TTS output to 16 or 8kHz
as I route the TTS output to a bluetooth headset, it would be good have it in a 16 or 8kHz Sampling.
How do I achieve that? And is it actually possible?
Thanks!
3
votes
2answers
113 views
recursive sampling in r
I´m trying to simulate death over 7 years with the cumulative probability as follows:
tab <- data.frame(id=1:1000,char=rnorm(1000,7,4))
cum.prob <- c(0.05,0.07,0.08,0.09,0.1,0.11,0.12)
How ...
3
votes
3answers
1k views
Question about timing in C# real time audio analysis
I'm trying to determine the "beats per minute" from real-time audio in C#. It is not music that I'm detecting in though, just a constant tapping sound. My problem is determining the time between ...
3
votes
1answer
231 views
Sound sampling at low frequencies
I've actually posted this question before, but it hasn't been answered. Maybe I wasn't clear enough, so let me rephrase:
As you know, when you're sampling a signal at a certain sampling rate, any ...
2
votes
2answers
43 views
Select from a video stream all images separated by a given sampling interval OPENCV
I'm using OpenCV for a project, but am a total beginner.
I have a video file on my mass storage repository, and want to write a method to access all the frames of the video stream that are separated ...
2
votes
1answer
120 views
Efficient algorithm for weighted random sampling with replacement
I have a constant amount of samples, with each sample having a probability. Now I want to resample from this data source to get the same amount of new samples, each having the same probability.
For ...
2
votes
1answer
92 views
Why sensor sampling rate become too low when Android phone is still?
I write a simple app to read accelerometer data and I found that sampling rate is too low(even one sample 5 seconds) when I put phone on the table and keep quiet. I set sampling rate as FASTEST it's ...
2
votes
2answers
101 views
How do I take subsets of a data frame according to a grouping in R? (tricky aggregation problem)
I have an aggregation problem which I cannot figure out how to perform efficiently in R.
Say I have the following data:
group1 <- c("a","b","a","a","b","c","c","c","c",
...
2
votes
2answers
130 views
FFT - When to window?
I've seen the various FFT questions on here but I'm confused on part of the implementation. Instead of performing the FFT in real time, I want to do it offline. Lets say I have the raw data in float[] ...
2
votes
4answers
61 views
Efficient random sampling from a huge list
I have a data file with a large number of values (53,000,000+) and I would like to pull out a random subset of n of these values (say, 2,000,000). I implemented a Perl script that pulls the list into ...
2
votes
1answer
153 views
OpenGL ES 2.0. GLSL - cannot use two sampled colors at the same time in fragment shader
I don't even really know how to describe this problem, so I will try to explain with code. I have a fragment shader that does parallax mapping and lighting computations. I've managed to trace the ...
2
votes
1answer
88 views
Re: Randomly selecting values from a matrix, adding for loops (in R) [closed]
Possible Duplicate:
Randomly selecting values from an existing matrix after adding a vector (in R)
This is a follow up to my question from last week and can be found here. I wasn't sure if ...
2
votes
2answers
167 views
Quickly and safely determine random number within range
How would I quickly and safely* determine a random number within a range of 0 (inclusive) to r (exclusive)?
In other words, an optimized version of rejection sampling:
u32 myrand(u32 x)
{
u32 ...
2
votes
2answers
751 views
How to draw waveform of Android's music player?
one of the default live wallpapers that came with my phone was a wallpaper that displayed the wave form of music playing in the background in real time. I was wondering how one could go about doing ...
2
votes
1answer
136 views
readframes return 2 byte in python
When readframes() is used in python, the online documention says sampling frequency is returned it looks it returns 2 bytes. I think there are 4 byte on each frame:
left = 2 bytes
right = 2 bytes
...
2
votes
2answers
267 views
Random sampling from gridded data: How to implement this in Matlab?
I have a 200x200 gridded data points. I want to randomly pick 15 grid points from that grid and replace the values in those grids with values selected from a known distribution shown below. All 15 ...
2
votes
1answer
519 views
Any way to change the sampling frequency of a WAV (or MP3) in Android or just Java?
I'm trying to get files played through a mono (SCO) BT headset in Android. The files have to have an 8000 Hz frequency, but the ones I have are 44100 Hz. The files are MP3s, but I've already created ...
2
votes
2answers
195 views
Profilers Instrumenting Vs Sampling
I am doing a study to between profilers mainly instrumenting and sampling.
I have came up with the following info:
sampling: stop the execution of program, take PC and thus deduce were the program ...
2
votes
6answers
342 views
How to keep a random subset of a stream of data?
I have a stream of events flowing through my servers. It is not feasible for me to store all of them, but I would like to periodically be able to process some of them in aggregate. So, I want to ...
2
votes
4answers
929 views
Select cells randomly from NumPy array - without replacement
I'm writing some modelling routines in NumPy that need to select cells randomly from a NumPy array and do some processing on them. All cells must be selected without replacement (as in, once a cell ...
2
votes
2answers
1k views
Change the playback rate of a track in real time on Android
I would like to know if somebody knows a library to changing the playback rate of a track in real time. My idea is to load a track and change its playback rate to half or double. Firstly, I tried with ...
1
vote
2answers
65 views
R sampling to get around randomForest 32 factor limit [closed]
I'm trying to work around the randomForest package limit of 32 levels for factors.
I have a data set with 100 levels in one of the factor variables.
I wrote the following code to see what things ...
1
vote
1answer
99 views
Efficiently picking a random element from a chained hash table?
Just for practice (and not as a homework assignment) I have been trying to solve this problem (CLRS, 3rd edition, exercise 11.2-6):
Suppose we have stored n keys in a hash table of size m, with
...
1
vote
1answer
43 views
Are there any modern Windows PCs that don't have at least one DirectShow capture device in them? [closed]
I am considering doing something that might seem strange to get a reliable time clock. I have to push buffers to a WiFi connected audio output device that does not do buffering or audio timestamp ...
1
vote
2answers
209 views
CPU time percentage algorithm problems
I'm having issues with a Java algorithm I created to convert nanosecond CPU time usage (obtained via JMX) to a percentage out of 100%. The algorithm appears to be giving numbers greater than 100%, ...
1
vote
1answer
52 views
Looking for a smarter way to randomly split a 1D range of values
I am in need of a way to randomly split a 1-dimensional range of values (i.e. continuous integers) into k sections. Just using a pseudo-random generator to pick split points would technically get the ...
1
vote
2answers
158 views
Stratified sampling - not enough observations
What I would like to achieve is get a 10% sample from each group (which is a combination of 2 factors - recency and frequency category). So far I have thought about package sampling and function ...
1
vote
2answers
49 views
Aggregate/Extrapolate sparse samples in multi-dimensional space
Imagine there is a function which evaluates the elevation of a surface given a floating point x and y coordinate (and additional components in accordance with dimensionality):
double ...
1
vote
0answers
186 views
Android: Get an mp3 file and display it in the higher/lower voice
Here is the code so far
it just display the normal song.
package com.training.MediaPlay;
import java.io.IOException;
import com.training.MediaPlayer.R;
import android.app.Activity;
import ...
1
vote
4answers
200 views
How can I subdivide a function when using Instruments Time Profiler
I've got a relatively long function that's dominant in the Instruments Time Profiler. Is there a way to add additional symbols to this function so the sampling will show time allocated to different ...
1
vote
2answers
250 views
MATLAB/General CS: Sampling Without Replacement From Multiple Sets (+Keeping Track of Unsampled Cases)
I currently implementing an optimization algorithm that requires me to sample without replacement from several sets. Although I am coding in MATLAB, this is essentially a CS question.
The situation ...
1
vote
3answers
170 views
Finding appropriate cut-off values
I try to implement Hampel tanh estimators to normalize highly asymmetric data. In order to do this, I need to perform the following calculation:
Given x - a sorted list of numbers and m - the median ...
1
vote
1answer
319 views
AMR - how to upsample
How can I upsample AMR audio data. The amr file consists of 6 bytes header - "!#AMR".getBytes() and after that there are frames 32bytes each with 1 byte header and 31bytes audio. How am I supposed to ...
1
vote
1answer
179 views
How do I add the effect of sampling rate to a difference equation?
I want to implement the difference equations below to design an accumulator and a differentiator:
Accumulator:
y[n] = y[n-1] + x[n], where y[n]is the n'th output and x[n] is n'th the input.
...
1
vote
2answers
503 views
How do i play back a sampled audio file at the same speed as the original?
Question is as stated in the title.
After i decimate an audio signal that take every nth point out it in turns speeds up the audio clip at a factor of n. I want the decimated and original clips to ...
1
vote
1answer
635 views
low pass FIR filter - with no latency
I'm using a FIR filter to oversample audio. It's a simple typical windowed sinc, i.e. a sinc function truncated and windowed. As usual it requires past and 'future' samples to work. in practical terms ...
1
vote
2answers
138 views
Sampling from a texture which is also a render target
I know this technically isn't supported (and as far as I can tell it's undefined behavior) but is it really a fatally horrible thing to sample from a texture which is also being written to?
I ask ...
1
vote
3answers
383 views
PHP randomly select from a list
I am currently working with PHP code that random selects colors:
<div onclick="location.href='<?php the_permalink() ?>';"
style="cursor:pointer;background:#<?php
echo ...