Réponse apportée
filter clarity needed - does no. of coefficients = order = no. of poles and zeros?
No, not the number of coefficients, but there is a relationship with the order. The order is one less than the number of coeffic...

environ 14 ans il y a | 2

| A accepté

Réponse apportée
Linspace for logarithmic increasing values
Since you are really interested in a power relationship that will produce a straight line in a loglog plot, why can't you use li...

environ 14 ans il y a | 0

Réponse apportée
Warning in matlab
See the help for intmax

environ 14 ans il y a | 0

Réponse apportée
Elliptical plot to Frequency response
Hi Tom, you don't want to input the zeros and poles to fvtool(), you want to import the filter numerator and denominator coeffic...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
need to visualise this comb filter
You have to know tau. In your example, tau is 1, just as long as that is correct. Also, the sign on g is incorrect and you don't...

environ 14 ans il y a | 0

Réponse apportée
need to visualise this comb filter
You can visualize it in pole-zero form, or the phase, magnitude etc, which evaluates it on the unit circle. However, you shou...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
spiht algorithm
This algorithm is available for both gray scale and true color images in the Wavelet Toolbox as an option for wcompress

environ 14 ans il y a | 0

Réponse apportée
Append a string to a cell array of strings
x = {'abc', 'def','ghijk'}; y = 'lmnop'; x = char(x); x = reshape(x,1,size(x,1)*size(x,2)); x = [y x]; ...

environ 14 ans il y a | 0

Réponse apportée
Harmonic Analysis using wavelet
DSP System toolbox has dwt block to do the critically-sampled discrete wavelet transform. But no blocks for the nondecimated or ...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
how to find max freq and lamdha min for a pulse
ydft = fft(y); ydft = ydft(1:floor(length(ydft)/2)+1); [maxval,I] = max(abs(ydft)); freq = 0:fs/length(y):fs/2; ...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
load ha .wav file in matlab
You can do something like this. h = uicontrol('Style', 'pushbutton','String','Select WAV File',... 'Position',[20 1...

environ 14 ans il y a | 0

Réponse apportée
Guitar synthesis
See this demo in the Signal Processing Toolbox: <http://www.mathworks.com/products/signal/demos.html?file=/products/demos/shi...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
what is fftshift ?
It shifts the DC (zero frequency component) to the center of the signal or image. Have you seen the explanation in the documenta...

environ 14 ans il y a | 1

Réponse apportée
picking the signal from PSD
If you specify a sampling frequency, then f is in increments of Fs/N where Fs is the sampling frequency and N is the length of t...

environ 14 ans il y a | 2

Réponse apportée
how to get frequency of a discrete signal by using fft in matlab
You don't have to do fftshift() to get the real spectrum. fftshift just puts 0 in the center with "negative" frequencies to the ...

environ 14 ans il y a | 1

Réponse apportée
picking the signal from PSD
The PSD shows how the power in the signal is distributed as a function of frequency. The x-axis, f, are the frequencies. If you ...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
fast alternative to continuous wavelet transformation cwt
Are you using cwt, or cwtft to do the CWT? cwtft uses the Fourier transform and might be faster. Again you would have to profile...

environ 14 ans il y a | 0

Réponse apportée
how to get frequency of a discrete signal by using fft in matlab
You identify the peak in the Fourier transform, find the index in DFT vector corresponding to that peak and relate that to frequ...

environ 14 ans il y a | 2

| A accepté

Réponse apportée
Smoothing filters
If you want loess smoothing then see smooth() in the Curve Fitting Toolbox. That offers loess and a number of other smoothing op...

environ 14 ans il y a | 0

Réponse apportée
Importing two different files with different sampling rate
There are multiple things you can do. A couple of these are: 1.) You can resample the data using resample() That would enabl...

environ 14 ans il y a | 0

Réponse apportée
Periodicity of a signal
Hi Tiago, You can definitely use a periodogram-based test to detect whether a periodicity is present or not. Fisher's Kappa i...

environ 14 ans il y a | 1

| A accepté

Réponse apportée
Detach periodic and non-periodic part sof a signal
What knowledge do you have about the periodic part? It is a single frequency, or a superposition of frequencies in some narrowba...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
Get states from a fdesign.bandpass object and use in filter function
After you design your filter, set the PersistentMemory property of the object to true. d = fdesign.bandpass; Hd = desi...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
radar signal simulation
The Phased Array System Toolbox has a number of functions to aid you in using the radar equation in determining the required tra...

environ 14 ans il y a | 0

Réponse apportée
Discrete wavelet transform relation to sampling frequency of the signal
Yes, what you are seeing is that the filters are not perfect bandpass filters, but they are better if they are longer. For examp...

environ 14 ans il y a | 1

| A accepté

Réponse apportée
Smoothing filters
It sounds like you just want a simple moving average filter (5 point). You can do that with b = 1/5*ones(5,1); output...

environ 14 ans il y a | 0

Réponse apportée
help needed on dfilt.fftfir
Please see this bug report. It is the same error. There is a work around provided by MathWorks <http://www.mathworks.com/supp...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
Discrete wavelet transform relation to sampling frequency of the signal
Hi Chirag, Yes, in general you can say that D1 contains information in the signal from 250 kHz to 500 kHz. However, two things t...

environ 14 ans il y a | 1

Réponse apportée
how to apply highpass, lowpass or bandpass filtering according to the paramaters ?
What are the lower and upper bounds? If the lower bound is 0 and the upper bound is some frequency less than the 1/2 the samplin...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
left divide discrepancy
mldivide(A,B) is A\B If B is 3x1 and A is 3x3, then B/A should give you a dimension error, but A\B should give you basically...

environ 14 ans il y a | 1

Charger plus