Lecture No-01 Definition of signal
6:48
New Course on Signal and System
4:16
Пікірлер
@IluriMounika
@IluriMounika 2 ай бұрын
Thank you sir🙏
@EngineerAnandu
@EngineerAnandu 5 ай бұрын
Thanks you sir
@EngineerAnandu
@EngineerAnandu 5 ай бұрын
good
@ahmedsoliman72
@ahmedsoliman72 8 ай бұрын
Thank you very much ❤❤
@srmee9894
@srmee9894 9 ай бұрын
share the codes
@balachandran7832
@balachandran7832 10 ай бұрын
Simulink.sdi.view possible ah?
@shreyadhar8236
@shreyadhar8236 Жыл бұрын
error is showing in line 8
@shreenikahs8370
@shreenikahs8370 Жыл бұрын
What are changes we have to make in scilan for this program
@danishfarooqjusani9730
@danishfarooqjusani9730 Жыл бұрын
what is alpha and eps ..please explain
@rismakhanaya9812
@rismakhanaya9812 Жыл бұрын
can you make low pass filter for elliptic ? 😢
@kurniacaca1456
@kurniacaca1456 Жыл бұрын
pleasee can you make low pass filter for bessel too?
@farhanjamali7364
@farhanjamali7364 Жыл бұрын
How can I add noise??
@hiralthakur5282
@hiralthakur5282 2 жыл бұрын
@MATLABLLAB can you please tell me how to add Title in GUI without a text box?
@bruhbruh4137
@bruhbruh4137 2 жыл бұрын
CODEEEEEEEEEEEEEEEEEEE PLSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS
@bvkssameer7592
@bvkssameer7592 2 жыл бұрын
pls explain the theoretical portion also
@MATLABLAB
@MATLABLAB 2 жыл бұрын
Ok .. thank you for suggestions
@gaminggalaxy2556
@gaminggalaxy2556 2 жыл бұрын
what is alphap and alpha s
@iesuji
@iesuji 2 жыл бұрын
Sir can you share your email id ? i have a doubt about matlab project code. Please
@MATLABLAB
@MATLABLAB 2 жыл бұрын
@tsegatekle801
@tsegatekle801 2 жыл бұрын
how can we do it for fractional order butterworth low pass filter ?????
@trs5127
@trs5127 Жыл бұрын
Order cannot be a fraction as far as I'm aware. You round it off to the next whole number
@tsehayenegash8394
@tsehayenegash8394 2 жыл бұрын
I have 15 years radiosonde Temperature data in excell. I made the program like this: 1. Temp=xlsread('Addis_Ababa_wholeRS.xlsx',4); % read the data 2. Height=Temp(:,1); % all row column one is height in Km 3. Temperature=Temp(:,2:end); % column 2 to end is Temperature in degree Centigrade 4. m=Temperature; 5. N=length(m); % lenght of the data 6. fs=1; % Sampling frequency 7. subplot(2,1,1) 8. plot(m) 9. title('\bf Temp Variation over Addis Ababa station during 2006 - 2020 at 2 (Km)') 10. ylabel('Amplitude') 11. xlabel('Month') 12. mf=fft(m); % Fast Fourier Transform which convert time signal into frequency Domain 13. Q=abs(mf); % Take the magnitude of the Fourier Transform 14. ps=abs(mf).^2; % Power Spectrum Density 15. fa=(0:N/2).*(fs/N); % Frequency Analyze 16. b=abs(mf(1:length(fa))); % Make the same dimension of frequency analysis with the time signal 17. c=abs(m(1:length(fa))); 18. subplot(2,1,2) 19. plot(fa,ps(1:length(fa))) 20. title('\bf Temp Peaks for Addis Ababa station during 2006 - 2020 at 2 (Km)') 21. ylabel('Power Spectrum') 22. xlabel('Frequency') My question raise here is how can I plot frequency vs Amplitude. In number 19 above I can plot(fa,ps(1:length(fa))) but my advisor wants to plot(fa, Amplitude). Please help me Thank you.
@tatvamkrishnam6691
@tatvamkrishnam6691 2 жыл бұрын
Kindly help. I am not getting same output (esp. that 0 to 0.4 part in o/p figure) . have checked my code thrice.
@wekshumadelesa3589
@wekshumadelesa3589 2 жыл бұрын
im also getting the same out put 🙃
@kimvuivoon4858
@kimvuivoon4858 2 жыл бұрын
may i know what is number of sampling freq and cut off freq
@ansarrizal2932
@ansarrizal2932 2 жыл бұрын
Nice and verygood 👍
@heavenlyboon4880
@heavenlyboon4880 2 жыл бұрын
Thank you so much sir for ur excellent explaination.🙏🙏
@kumaraakash3556
@kumaraakash3556 2 жыл бұрын
Can I get your contact I have a query regarding my project.
@sowjanyatarni5347
@sowjanyatarni5347 2 жыл бұрын
Sir for bandpass filter what are the changes we need to make in the above code?
@afifasolehah
@afifasolehah 3 жыл бұрын
May I ask how to insert audio file in matlab for signal processing?
@jyothsnaharika50
@jyothsnaharika50 3 жыл бұрын
facing error plz help
@jyothsnaharika50
@jyothsnaharika50 3 жыл бұрын
buttord' requires Signal Processing Toolbox. Error in butterworthlpf (line 7) [N,wc]=buttord(pf,ps,ap,as);
@inquisitiverakib5844
@inquisitiverakib5844 3 жыл бұрын
18:59
@omarjameel9389
@omarjameel9389 3 жыл бұрын
What about bandstop filter
@mm-lr1bj
@mm-lr1bj 3 жыл бұрын
clear all; alphap=1; %passband attenuation in db alphas=15; %stopband attenuation in db wp=0.2*pi; %passband frequency in radians ws=0.3*pi; %stopband frequency in radians %To cutoff frequency and order of filter [n,wn]=cheblord(wp/pi,ws/pi,alphap,alphas) %system function of the filter [b,a]=cheby1(n,alphap,wn) w=0:0.01:pi; [h,ph]=freqz(b,a,w); m=20*log(abs(h)); an=angle(h); subplot(2,1,1); plot(ph/pi,m) grid; xlabel('normalized frequency') ylabel('Gain in db') subplot(2,1,2) plot(ph/pi,an) grid; xlabel('normalized frequency') ylabel('Phase in radians')
@umamaheshwari4874
@umamaheshwari4874 3 жыл бұрын
B,a value ala teskovali
@VibeWithAk4747
@VibeWithAk4747 3 жыл бұрын
What are the changes in FIR Filter.
@trungmai5552
@trungmai5552 3 жыл бұрын
high pass pls
@satyaveer6470
@satyaveer6470 3 жыл бұрын
please use audioread in place of wavread
@namqulmikah9853
@namqulmikah9853 3 жыл бұрын
how continuous time signal?
@novakzagradjanin6881
@novakzagradjanin6881 3 жыл бұрын
kzbin.info/www/bejne/iWLddpiIoq2ZqMU
@Akash-zw1jn
@Akash-zw1jn 3 жыл бұрын
Thanks
@vineethkumarsiriyala3944
@vineethkumarsiriyala3944 3 жыл бұрын
Excellent excellent....
@JuanChehin
@JuanChehin 3 жыл бұрын
hello, good video, a query, if I need an analog filter, should I only modify freqz by freqs?
@christostsatsanis7500
@christostsatsanis7500 3 жыл бұрын
I have created the .exe file and is easily running in any PC that has already installed the Matlab Software For it to run in other PCs, it requires the Matlab Runtime (1,7 GB unzipped file from Mathworks), which is basically some Matlab Libraries Is there any way that the .exe file can run in any PC without the use of either Matlab Software or Matlab Runtime? Thanks for the Video and your time
@christostsatsanis7500
@christostsatsanis7500 3 жыл бұрын
@MATLAB LAB is there any solution to what i described or this is the best i can do?
@chaithranaik4022
@chaithranaik4022 3 жыл бұрын
how to design a time domain design of IIR filter in matlab
@conniek6577
@conniek6577 3 жыл бұрын
thanks for your sharing, very useful ~~
@nagarajav3812
@nagarajav3812 3 жыл бұрын
Not visible
@MATLABLAB
@MATLABLAB 3 жыл бұрын
Sorry ...but I don't know what problem with this video . Initially the video quality was good...but recently I facing this type of problem with my videos..
@darlingukiran207
@darlingukiran207 3 жыл бұрын
sorry sir I have many comments here. but I need help because I ask a lot of people and no one can solve this Matlab code.
@darlingukiran207
@darlingukiran207 3 жыл бұрын
queation 3 also I don't know how to relate question number 2. Question: Q3. Estimate the SPECTRUM of the filtered signal in question 2 using z-transform technique. Matlab code: I dont know?
@darlingukiran207
@darlingukiran207 3 жыл бұрын
But, In question number 2, ask me to design an FIR filter in a hamming window. I can't solve because it has a signal value.In question number 2, ask me to design an FIR filter in a hamming window. I can't solve because it has a signal value. Question: Q2. Calculate and plot signal using ifft in Matlab. Design in FIR filter. Given: H(n) = [ 0.0068 ,0.0033 ,-0.0166 ,-0.0305 ,0.0192, 0.0921, 0.0389, -0.1265, -0.1478, 0.0618, 0.206, 0.0618, -0.1478, -0.1265, 0.0386, 0.0921, 0.0192, -0.0305, -0.0166, 0.033, 0.0068] Matlab code: How to make the matlab code??
@darlingukiran207
@darlingukiran207 3 жыл бұрын
This is question number 1 and Matlab code that I can solve: Question: Q1. Plot the signal x[n] and determine the spectrum of the signal using z-transform. Give: Time = [0.00, 0.03, 0.07, 0.10, 0.13, 0.17, 0.20, 0.23, 0.27, 0.30, 0.33, 0.37, 0.40, 0.43, 0.47, 0.50, 0.53, 0.57, 0.60, 0.63, 0.67, 0.70, 0.73, 0.77, 0.80, 0.83, 0.87, 0.90, 0.93, 0.97] Amplitude= [33.48, 4.77, -14.22, 10.36, 15.32, 2.60, 16.21, 12.47, -22.06, -17.06, 12.41, 2.91, -10.88, 0.05, -14.88, -33.88, -4.77, 14.22, -10.36, -15.32, -2.60, -16.21, -12.47, 22.06, 17.06, -12.41, 17.06, -12.41, -2.19, 10.88, -0.05, 14.88] Matlab code: %% Initialisation %% clc; clear all; close all; syms z fs=30; Ts=1/30; %% Given the input Sequence %% x=[33.48 4.77 -14.22 10.36 15.32 2.60 16.21 12.47 -22.06 -17.06 12.41 2.19 -10.88 0.05 -14.88 -33.48 -4.77 14.22 -10.36 -15.32 -2.60 -16.21 -12.47 22.00 17.06 -12.41 -2.19 10.88 -0.05 14.88]; n=1:length(x); figure(1) stem(n/fs,x); xlabel('Sample'); ylabel('Amplitude'); title('Input Sequence, x[n]'); %% To find the Magnitude Spectrum of the Signal %% f=ztrans(x,z); X1=fft(x,length(x)); figure(2) stem(n/fs,abs(X1)); xlabel('Frequency'); ylabel('Magnitude'); title('Magnitude Spectrum of the Input Sequence, x[n]'); %% End of the Program
@darlingukiran207
@darlingukiran207 3 жыл бұрын
hi can you help me? In the subject of Digital signal processing I need to create a matlab code FIR filter and z-transform, but I still can't find the solution to the matlab code.
@rehandude3620
@rehandude3620 3 жыл бұрын
Can we implement on online matlab ??
@jehrilipuppy1299
@jehrilipuppy1299 3 жыл бұрын
i am getting --- Error evaluating parameter 'coefficientvector' error for FDATool block accesing internal filter object while using simulink...