I am Professor at the University of Applied
Sciences in Karlsruhe Germany. I am interested in Signal Processing in general and especially to wavelet transformation
Starting the calculation from the output makes deriving a passive network transfer function simple, and this post shows how to do it in MATLAB using a sixth-order low-pass example. The walkthrough uses tf('s') to build a symbolic H(s), extracts coefficients with tfdata, and shows numerical frequency-response plotting via freqs or direct j*omega evaluation, with code and component values to reproduce the results.
Bandpass signals can be sampled at rates below the usual Nyquist limit, and this note shows how the band-limited spectrum appears in baseband after sampling. Using a simple example figure, it defines the center frequency fc = (fmax + fmin)/2 and bandwidth Δf = fmax - fmin, and highlights that choosing fs less than twice the signal's highest frequency violates the sampling theorem.
This post walks through Simulink models that implement SSB demodulation and modulation, using Richard Lyons' phasing method as a foundation. It shows practical models for simple carrier multiplication and for the phasing method with cosine and -sin paths plus Hilbert filtering, and it highlights sampling, decimation, filter choices, and delay alignment to make the techniques work in simulation.
A compact Simulink model explains why certain DFT rows behave like negative-frequency bandpass filters, using dftmtx(8) rows as impulse responses. The demo shows that a 2 kHz tone with phase 0 or pi produces identical real parts and opposite imaginary parts, making a negative-frequency interpretation unnecessary. It also illustrates how a 6 kHz tone under 8 kHz sampling aliases to 2 kHz with opposite phase, visible in PSD plots.
Hi,The amount of 0.999 of the poles causes the poles to be very close to the unit circle in the z complex plane. In implementation, the poles can go outside the...
Hello,I have created a simulink model that can be used to answer your questions very easily and clearly.A complex signal corresponding to QPSK is formed from two...
Himy opinion is that decimation cannot work here. If you want to get the analog signal from 65MHz down to 2MHz in baseband, then you may simply need to sample the...
HiI have expanded my program with the following MATLAB lines and the amplitude spectrum only shows one pick.s = [x1 x2];S = fft(s)/(2*1001);figure(3);clf;plot(0:2001,...
Hi,I did not receive your problem with these few MATLAB lines:% Script test_1.mx1 = sin(2*pi*100*(0:1000)/1000);phi = pi/3;x2 = sin(2*pi*100*(0:1000)/1000 + phi);figure(1);...
HiI think I found the bug. The option 'centered' in the command pwelch has to be replaced with 'twosided'. This gives the correct symmetry of the psd, which results...
Hi,The sketch shows how the spectra of the signals change through the filtering and downsample.In the illustration a) the original spectrum is shown. It contains...
After watching the very good blog 'Phasing Method of Single Sideband Demodulation' authorRick Lyons, I decided to simulate some of the arrangements shown (such as...
In my opinion, the formula you use is incorrect. With ifft () you generate a time sequence that you have to multiply by the complex oscillation exp (-2j pi fc t)....
Hello,Attached is a PDF file with a text in German and a translation in English. I hope it helps to understand how to describe a DC motor.RegardsDC_motor.pdf
HelloYou can subsample so that your bandpass signal is shifted in the baseband. In a Simulink model (undersample_100.slx) a sine signal of 100.01 MHz is shifted...
Hello,the following MATLAB-Script might help you:%################################################% Script sampled_mag_1.m, in which the impulse response of % a...
Hi,i think you have a time aliasing due to the sampling of the DTFT and therefore the reconstructed signal via the inverse DTFT is not the expected signal.With the...
Hello,with the following pictureI will try to answer you. For a channel with a sampling frequency of 5.4 GHz, a bandwidth of BW = 2.7 GHz in the vicinity of 8 GHz...
Hello Mr. Fragavetti,here is a MATLAB script that I used to edit an audio file. You need to change the script for your needs.Always look at the time signals. Instead...
Here is a Simulink model that can be used to answer your question.Random numbers between -1 and +1 with a period of 1/100 s are generated from a Random Number block....
Hello,I tried to analyze your wav file with a wavelet transform. With two stages, the approximation coefficients are freed from interference, giving the pitch frequency...
Hello,the idea of djmaguire is very good. For the frequency of 1700.5 HZ you have to increase the resolution of the FFT to 0.5 Hz / Bin, so you need a data block...
Hello,You can determine the autocorrelation of the excitation and the cross correlation input / output for each data block. You can then average these and improve...
I changed figure(3):figure(3);subplot(211), plot(tk, real(yk));title('Continuous signal'), grid on;subplot(212), plot(tk, y_rec);title('The samples and with sinc-functions...
To be sure that the samples are correct one has to reconstruct the continuous signal with the sinc function from these samples:function mist1N = 64; %number of samplest_vec...
Hello,Here's another solution with a block Delay Line:polyphase_solution_2.slxpolyphase_solution2.mThe delay block with a delay equal to one is necessary because...