2 Questions 1 Answers 0 Followers
Questions related from Artur Pater
I want to use fft on first cycle of sine wave to get all samples from it. fs=1000; t = 0:1/fs:0.2-1/fs; x = 5*sin(2*pi*50*t); plot(t,x) To do it I used loop: n = 20; for i=n:length(x) y =...
11 November 2018 9,840 1 View
I want to design a Butterworth filter in Matlab to get values of magnitude and phase after filtration from normal sine wave [fs=1000; t = 0:1/fs:0.16; x = sin(2*pi*50*t); plot(t,x)] and...
02 November 2018 5,457 5 View