electronics and communication (B. Tech/ B. E)
Programs for digital signal processing. written using MATLAB
Pages
(Move to ...)
Home
Syllabus of 'Digital Signal Processing Lab' in the KTU B.Tech ECE 5th semester can be seen by clicking here.
34 matlab programs here! Please click here to see all the matlab programs present in this blog
About this weblog
▼
Showing posts with label
sine
.
Show all posts
Showing posts with label
sine
.
Show all posts
MATLAB program to find out the Fourier Transform of sinusoidal waveform
›
Program code clc; clear all; close all; t=0:0.001:1; cwtstruct = cwtft((sin(2*3.14*1000*t)),'plot'); Output _______...
Matlab program to generate a sinusoidal waveform
›
Program Code %sinusoidal waveform generation clc; clear all; close all; f=1000; t=0:1/(f*1000):2/f; y=sin(2*pi*f*t); plot (t,y); xlabel ...
4 comments:
›
Home
View web version