Respondida
After filtering my EEG signals using a FIR band pass filter I am getting the following result .kindly tell if it is right or wrong?
It's hard to tell on the picture, but it looks like the curve labeled "original" is more band-limited than the curve labeled "fi...

más de 8 años hace | 0

Respondida
Function definitions are not permitted at the prompt or in scripts
You can use anonymous functions from the command line (or in a script). Compared to named functions, they are quite limited, tho...

más de 8 años hace | 0

Respondida
How to use mod function in this question
t=1:24; N=No*exp(k*t); plot(t(1:2:end), N(1:2:end), 'kx-');

más de 8 años hace | 0

| aceptada

Respondida
FFT Peaks Resolver Signal
t=0:(1/80000):(79999/80000); r_sin=sin(2*pi*5000*t).'; r_cos=sin(2*pi*5000*t).'; If applied to synthetic input sign...

más de 8 años hace | 0

| aceptada

Respondida
how to correct this error
Make sure that matAB has as many rows as Y_norm has elements.

más de 8 años hace | 0

Respondida
How to know the frequency from spectrogram image?
The frequency is plottet on the vertical (y-) axis. The color indicates amplitude, so it's probably in dB.

más de 8 años hace | 0

Respondida
how do i design a A 17-tap low-pass FIR filter with pass-band upper frequency of 6 Hz and stop-band lower frequency of 30 Hz and the sampling frequency is 512 Hz.And how can i pass my input vector through it? Any help will really be useful!
Filters are applied to signals using the filter(B, A, sig) function. 17 taps is probably too short for the stated requirement...

más de 8 años hace | 0

Respondida
how to process *.emg data in matlab?
Get the description of the file format (it sounds highly proprietary) from the manual of the device, or from the manufacturer of...

más de 8 años hace | 0

Respondida
Matrix Multiplication by a vector of Ones - How to write mathematically
That is just a regular matrix multiplication, with the second "matrix" having only one column.

más de 8 años hace | 0

Respondida
How to approximate a square wave signal from arbitrary known signals
I would try the plain vanilla approach first: Express the square wave as a linear combination of the given arbitrary signals, an...

más de 8 años hace | 0

Respondida
Inverse of filter function
In the z domain, the transfer function of a filter H(z) is B(z)/A(z). The inverse of the transfer function is A(z)/B(z). Howe...

más de 8 años hace | 3

| aceptada

Pregunta


filtfilt initial condition calculation ... can someone explain it?
Can someone explain how to get from the article "Determining the initial states in forward-backward filtering, IEEE Transactions...

más de 8 años hace | 1 respuesta | 2

1

respuesta

Respondida
Initialize filter so that filtered output begins with initial value of the input
Oops. That was supposed to be an answer, not a comment. So I'm posting it again as an answer. y(n) = y(n-1)*(1-a) + a*x(n) ...

más de 8 años hace | 0

Respondida
What is 'z' in the formula for a discrete PID controller?
1/(z-1) is equal to the infinite sum (z^-1) + (z^-2) + (z^-3) + ...; applied to a signal, this means the sum of all input sample...

alrededor de 9 años hace | 1

| aceptada

Respondida
What is 'z' in the formula for a discrete PID controller?
z is the variable of a transfer function in the z-domain. (Basically, z^-1 means a time shift of one sample backwards in time...

alrededor de 9 años hace | 1

Pregunta


How do I design filters with unconventional parameters?
Hello, I am looking for a way to design filters with parameters that are different from what MatLABs filter design functions ...

alrededor de 9 años hace | 1 respuesta | 0

1

respuesta

Respondida
Adding EMG Signal With 50Hx Sinosoidal wave. Not getting it correct
What is the scale of emg(:,2) myNoise may have a different scale than emg(:, 2) and become too small to display once th...

alrededor de 9 años hace | 1

| aceptada

Respondida
For loop trouble!
I assume you want to keep the intermediate values of u? In that case, use u(:, 1) = [1; 1; 1] (or u = [1; 1; 1]). Then you ca...

más de 9 años hace | 0

Pregunta


Am I using yulewalk() correctly?
I am trying to figure out if I am using the yulewalk function (signal processing toolbox) correctly. In a basic example, I tr...

más de 9 años hace | 1 respuesta | 0

1

respuesta