代码搜索:convolution
找到约 1,402 项符合「convolution」的源代码
代码结果 1,402
www.eeworm.com/read/361299/10058827
m ex05230b.m
% Chapter 05: Example 5.23 High speed convolution
% part b) Plotting of saved data
% run after part a)
load times.txt -ascii;
conv_time=times(1,:);
hsconv_time=times(2,
www.eeworm.com/read/359245/10159338
m circconv.m
function [y,n]=circconv(x1,x2,N)
% implement circle convolution of x1 and x2
% x1 and x2 are input sequences of n1,n2
www.eeworm.com/read/357506/10208418
m circonv.m
function y = circonv(x1, x2)
% Develops a sequence y obtained by the circular
% convolution of two equal-length sequences x1 and x2
L1 = length(x1);
L2 = length(x2);
if L1 ~= L2, error('Sequences
www.eeworm.com/read/424063/10502572
m convenco.m
function code = convenco(msg, tran_func);
% CONVENCO Encodes convolution code.
% CODE = CONVENCO(MSG, TRAN_FUNC) encodes the K-column message MSG to
% N-column code word CODE by using c
www.eeworm.com/read/424063/10503162
m com_case.m
function [ret,x0,str,ts,xts]=com_case(t,x,u,flag);
%COM_CASE is the M-file description of the SIMULINK system named COM_CASE.
% The block-diagram can be displayed by typing: COM_CASE.
%
% SYS=COM_
www.eeworm.com/read/424063/10503722
m compage3.m
function [ret,x0,str,ts,xts]=compage3(t,x,u,flag);
%COMPAGE3 is the M-file description of the SIMULINK system named COMPAGE3.
% The block-diagram can be displayed by typing: COMPAGE3.
%
% SYS=COMP
www.eeworm.com/read/277958/10590777
m circconv.m
function [y,n]=circconv(x1,x2,N)
% implement circle convolution of x1 and x2
% x1 and x2 are input sequences of n1,n2
www.eeworm.com/read/277188/10655395
c fir3.c
#include
#define NROF_SAMPLES 400
void
initialize( char *a, char *b )
{
int i;
for(i = 0; i < 8; i++)
b[i] = i - 4;
for(i = 0; i < 8; i++)
a[i] = 0;
www.eeworm.com/read/159329/10669572
c fir3.c
#include
#define NROF_SAMPLES 400
void
initialize( char *a, char *b )
{
int i;
for(i = 0; i < 8; i++)
b[i] = i - 4;
for(i = 0; i < 8; i++)
a[i] = 0;
www.eeworm.com/read/417486/10987883
m simo1_2_trl.m
clc;
clear all;
noofdata=64;
noofblock=1;
nooftaps=64;
qpskdata=complex(randsrc(noofblock,noofdata),randsrc(noofblock,noofdata));
s1=qpskdata(1,:);
qpskdata=reshape(qpskdata,noofdata*noofbloc