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...
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 前 | 0
| 已接受
提问
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 前 | 1 个回答 | 0
1
个回答已回答
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...
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 前 | 0
| 已接受
提问
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 前 | 1 个回答 | 0
1
个回答已回答
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==0; ...
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==0; ...
3 years 前 | 0
| 已接受
提问
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 前 | 1 个回答 | 0