140 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
68
views
Getting error: Identifier t has already been declared - Angular v13 and Amplitude integration
I am integrating Amplitude Analytics library in my Angular v13 project. I am using below libraries of Amplitude "@amplitude/analytics-browser": "2.16.0" and "@amplitude/plugin-...
0
votes
1
answer
56
views
Exception has occurred. MissingPluginException (MissingPluginException(No implementation found for method setLibraryName on channel amplitude_flutter)
I am trying to run my app in Android after implemented the Amplitude in flutter app but when app opens it crashes it exception
Exception has occurred. MissingPluginException (MissingPluginException(No ...
1
vote
0
answers
119
views
How to specify a path when extracting data from Amplitude to s3 bucket?
I have a destinaion for export events of Amplitude.
I want to save the extracted event data like my_bucket_name/amplitude/2023/10/16/.(my_bucket_name/amplitude/YYYY/MM/DD/HH)
However, the actual saved ...
-1
votes
1
answer
108
views
How to equate the amplitude of two sinusoidal signals in gnu radio?
I have two sinusoidal signals with different amplitude. I would like to equate the amplitude of the two signals. For instance, if the amplitude of the second signal is lower than the first signal's ...
0
votes
1
answer
171
views
How to fit 2 gauss in python
I am a new user of Python. I am trying to fit 2 Gaussians with data but there are some errors in the results.
import matplotlib
import matplotlib.pyplot as plt
import numpy as np
import scipy as scipy
...
1
vote
1
answer
704
views
Amplitude Unity iOS 'Amplitude\Amplitude.h' file not found
I added the Amplitude SDK to an existing Unity project, on Android it was fine, but for iOS when I try to build I get this error in xcode ... "'Amplitude\Amplitude.h' file not found"
Project ...
0
votes
2
answers
109
views
AudioKit v5 - Why is the loudness of the DynamicOscillators different depending on which Waveform Table I have set for them?
I am using AudioKit to build a simple music application that plays sound when buttons are pressed. When a button is pressed, I call .openGate() on an Amplitude Envelope that has a Dynamic Oscillator ...
1
vote
0
answers
63
views
Fit of increasing sinusoidal function
I want to make a sinusoidal fit to my data. I got it working for a constant amplitude, see the Figure below and my code:
Besides that, my data is also slightly skewed to the right. Is it possible to ...
0
votes
1
answer
286
views
Extracting annual amplitude and phase of xarray dataset for each pixel using xarray.DataArray.curvefit
I was wondering how can I extract annual amplitude and phase of xarray time series using xarray.DataArray.curvefit. We fit a 1d function in time to return annual and seasonal amplitude and phase with ...
2
votes
1
answer
509
views
Correct amplitude of the python fft (for a Skew normal distribution)
The Situation
I am currently writing a program that will later on be used to analyze a signal that is somewhat of a asymmetric Gaussian. I am interested in how many frequencies I need to reproduce the ...
0
votes
0
answers
589
views
Amplitude in Frequency domain not matching time domain signal after FFT in python. Explanation?
I am trying to create a Power spectral density function in python that outputs the amplitude spectral density and cumulative power spectral density graphs. I am using scipy.fft to compute the FFT of ...
0
votes
1
answer
536
views
Finding the season of the highest temperature amplitude
I was being disqualified from an interview test from a "top" freelance website because they found similarities in my answers from online. But I also would like to share my own solutions to ...
-1
votes
2
answers
1k
views
Getting frequency and amplitude from an audio file using FFT - so close but missing some vital insights, eli5?
tl/dr: I've got two audio recordings of the same song without timestamps, and I'd like to align them. I believe FFT is the way to go, but while I've got a long way, it feels like I'm right on the ...
0
votes
0
answers
37
views
Max&min of a sinus DF ; TypeError: 'function' object does not support item assignment
I try to get the min & max spots of a Dataframe that is sinusoidal. The Frequency is in 400er steps.
I wanted to define the function amplitude and collect the data in an array. Amp1 is an abs max ...
1
vote
1
answer
5k
views
remove n consecutive elements from array, so that amplitude of remaining elements is minimal
Given array A, I need to remove K consecutive elements, so that the amplitude(difference between maximal and minimal elements) of the remaining elements will be minimal.
e.g A=[3,5,1,3,9,8], K=4, the ...