lowpass-filter Questions
2
Solved
We are working on a project which allows us to record some sounds from a microphone with a 5k Hz sample rate with some Low-Pass filter & HighPass filter.
What we are using
We are using AvaudioE...
Dashiell asked 16/12, 2021 at 16:19
2
Solved
I need to implement a lowpass filter in Python, but the only module I can use is numpy (not scipy). I tried using np.fft.fft() on the signal, then setting all frequencies which are higher than the ...
Alika asked 23/1, 2022 at 18:5
1
Solved
I have a pandas.DataFrame indexed by time, as seen below. The other column contains data recorded from a device measuring current. I want to filter to the second column by a low pass filter with a ...
Abhorrence asked 20/2, 2017 at 18:34
3
I have an app which uses orientation data which works very well using the pre API-8 method of using a Sensor.TYPE_ORIENTAITON. Smoothing that data was relatively easy.
I am trying to update the co...
Mercantilism asked 8/1, 2015 at 18:0
6
Solved
I essentially have an array of values like this:
0.25, 0.24, 0.27, 0.26, 0.29, 0.34, 0.32, 0.36, 0.32, 0.28, 0.25, 0.24, 0.25
The above array is oversimplified, I'm collecting 1 value per millis...
Arcuation asked 8/2, 2012 at 20:27
4
I have a very basic question.
What is Low Pass filter and High Pass filter in case of Android Accelerometer?
When I see the output from the Accelerometer Sensor, I see If I don't use any filter, ...
Immerge asked 9/6, 2014 at 11:49
1
Solved
I implemented a simple low pass filter in matlab using a forward and backward fft.
It works in principle, but the minimum and maximum values differ from the original.
signal = data;
%% fourier spe...
Motif asked 2/3, 2015 at 16:21
1
I am using the device accelerometer and try to smooth the Accelerometer Data CMAcceleration.
I am doing this with help of this code:
-(void)proccessAccelerometerData:(CMAcceleration)accelData {
...
Hawthorne asked 31/8, 2014 at 11:0
1
Solved
I am working on an App for the iPad, and I want to analyze the Audio from a Video that I am playing. This is all going well, using the MTAudioProcessingTap.
Currently I have some test code to test/...
Devanagari asked 18/3, 2013 at 14:52
1
I am new in signal processing, and I didn't find Python code with good explanation. So I will be glad to get a simple explanation.
I have some signal that sampled each 1 nsec (1e-9 sec) and have, l...
Azote asked 11/7, 2012 at 8:20
3
Solved
I have implemented a rudimentary low-pass filter using a time based value. This is ok, but trying to find the correct time slice is guess work, and gives different results based on different input ...
Fustigate asked 12/11, 2010 at 7:33
1
© 2022 - 2024 — McMap. All rights reserved.