代码搜索:convolution
找到约 1,402 项符合「convolution」的源代码
代码结果 1,402
www.eeworm.com/read/359349/10154293
m gui_conv.m
clear, close all
H=figure('unit','normalized','Name','Convolution','NumberTitle','off','MenuBar','none');
H1=axes('unit','normalized','position',[0.05,0.69,0.6,0.2]);
title('The input signal x(t)
www.eeworm.com/read/424063/10501886
m sconvenc.m
function [sys, x0, str, ts] = sconvenc(t, x, u, flag, tran_func);
%SVITERBI SIMULINK file for convolution encoding.
% This file is designed to be used in a SIMULINK S-Function block.
%
www.eeworm.com/read/274679/10858506
m mexconv2preserveenergy.m
function result = mexConv2PreserveEnergy(data,filter)
% mexConv2PreserveEnergy - 2d convolution that avoids bleeding energy over the edge (mex file).
%
% result = mexConv2PreserveEnergy(data,filter)
%
www.eeworm.com/read/274679/10859622
cpp mexconv2preserveenergy.cpp
/*! @file mexConv2PreserveEnergy.cpp
\verbatim mexConv2PreserveEnergy - 2d convolution that avoids bleeding energy over the edge.
result = mexConv2PreserveEnergy(data,filter)
Convolves data with
www.eeworm.com/read/463000/7190751
m compconv2.m
% Program 5-10
% compconv2.m
%
% Function to perform convolution between signal and filter
%
% Programmed by H.Harada and M.Okita
%
function [iout, qout] = compconv2(idata, qdata, filter)
www.eeworm.com/read/439815/7701205
m convnyq.m
% Convolution of Raised Cosine Pulses
function convnyq(alpha,action)
if nargin == 0 alpha = .5; end;
if isstr(alpha) alpha = str2num(alpha); end;
if (alpha>1) alpha = 1; end;
if (alpha
www.eeworm.com/read/297947/7984381
m perform_lic.m
function M = perform_lic(v, w, options)
% perform_lic - perform line integral convolution
%
% M = perform_lic(v, w, options);
%
% v is a vector field (should be approximately of unit norm).
% w
www.eeworm.com/read/245324/12804195
m compconv2.m
% Program 5-10
% compconv2.m
%
% Function to perform convolution between signal and filter
%
% Programmed by H.Harada and M.Okita
%
function [iout, qout] = compconv2(idata, qdata, filter)
www.eeworm.com/read/244937/12830017
m convnyq.m
% Convolution of Raised Cosine Pulses
function convnyq(alpha,action)
if nargin == 0 alpha = .5; end;
if isstr(alpha) alpha = str2num(alpha); end;
if (alpha>1) alpha = 1; end;
if (alpha
www.eeworm.com/read/143548/12862039
cpp mainfrm.cpp
// MainFrm.cpp : implementation of the CMainFrame class
//
#include "stdafx.h"
#include "Convolution.h"
#include "MainFrm.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static c