Beantwortet
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...

fast 7 Jahre vor | 0

Beantwortet
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...

fast 7 Jahre vor | 0

Beantwortet
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-');

fast 7 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 7 Jahre vor | 0

| akzeptiert

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

fast 7 Jahre vor | 0

Beantwortet
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.

fast 7 Jahre vor | 0

Beantwortet
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...

fast 7 Jahre vor | 0

Beantwortet
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...

etwa 7 Jahre vor | 0

Beantwortet
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.

etwa 7 Jahre vor | 0

Beantwortet
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...

etwa 7 Jahre vor | 0

Beantwortet
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...

etwa 7 Jahre vor | 3

| akzeptiert

Frage


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...

etwa 7 Jahre vor | 0 Antworten | 2

0

Antworten

Beantwortet
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) ...

etwa 7 Jahre vor | 0

Beantwortet
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...

mehr als 7 Jahre vor | 1

| akzeptiert

Beantwortet
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...

mehr als 7 Jahre vor | 1

Frage


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 ...

mehr als 7 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
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...

fast 8 Jahre vor | 1

| akzeptiert

Beantwortet
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...

fast 8 Jahre vor | 0

Frage


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...

fast 8 Jahre vor | 1 Antwort | 0

1

Antwort