Statistics
RANK
270,319
of 300,753
REPUTATION
0
CONTRIBUTIONS
3 Questions
3 Answers
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
0
RANK
of 21,069
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 170,798
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Discussions
AVERAGE NO. OF LIKES
Feeds
compute DFT and IDFT of discrete time sequence
clc clear all close all %x=input('Enter the sequence') x=[5,6,7,8]; N=length(x); xk=zeros(1,N); ixk=zeros(1,N); X=[]; x...
3 years ago | 0
| accepted
Question
compute DFT and IDFT of discrete time sequence
clc clear all close all %x=input('Enter the sequence') x=[5,6,7,8]; N=length(x); xk=zeros(1,N); ixk=zeros(1,N); X=[]; x...
3 years ago | 1 answer | 0
1
answerlinear convolution of discrete time sequence
clc; clear; x=[9,8,7,6,5,4]; h=[1,2,3,4]; L= length(x); M = length(h); N = L+M-1; X=[x,zeros(1,N-L)]; H=[h,zeros...
3 years ago | 0
| accepted
Question
linear convolution of discrete time sequence
clc; clear; x=[9,8,7,6,5,4]; h=[1,2,3,4]; L= length(x); M = length(h); N = L+M-1; X=[x,zeros(1,N-L)]; H=[h,zeros...
3 years ago | 1 answer | 0
1
answerTo generate discrete time sequences
%unit impule %unit step %ranp %exponential %sine and cosine t=(-1:0.1:1); a=(-10:0.1:10); r=(-1:0.1:1); impule = t==0; ...
3 years ago | 0
| accepted
Question
To generate discrete time sequences
%unit impule %unit step %ranp %exponential %sine and cosine t=(-1:0.1:1); a=(-10:0.1:10); r=(-1:0.1:1); impule = t==...
3 years ago | 1 answer | 0