代码搜索:parameter
找到约 10,000 项符合「parameter」的源代码
代码结果 10,000
www.eeworm.com/read/379728/9180259
m argschk.m
% ARGSCHK - Check of parameter/value pairs
%
% [ opts, errmsg, wrnmsg ] = ARGSCHK( defopts, varargin ) checks
% parameter/value pairs.
% This software is provided "as is", without warranty of any
www.eeworm.com/read/182900/9186631
m simulatesnr.m
function [snr,amp] = simulateSNR(ntf,OSR,amp,f0,nlev,f,k)
%[snr,amp] = simulateSNR(ntf,OSR,amp,f0=0,nlev=2,f=1/(4*OSR),k=13)
%Determine the SNR for a delta-sigma modulator by using simulations.
%The m
www.eeworm.com/read/182900/9186763
m logsmooth.m
function [f,p] = logsmooth(X,inBin,nbin,n)
% function [f,p] = logsmooth(X,inBin,nbin,n=3)
% Smooth the fft, X, and convert it to dB.
% Use nbin(8) bins from 0 to 3*inBin,
% thereafter increase bin si
www.eeworm.com/read/378788/9215841
m fast_lot.m
%-------------------------------------------------------------------------
% function subroutine: fast_lot.m, for fast LOT Algorithms,for M=8
% Input parameter:
% vector a -----In this progr
www.eeworm.com/read/378680/9219037
cpp connect.cpp
/************************************************************************
*
* Resource ID Organiser Add-In for Visual C++
*
* (c) Copyright 2000-2005 by Riverblade Limited (UK). All
www.eeworm.com/read/378680/9219071
cpp optionscommandhandler.cpp
/************************************************************************
*
* Resource ID Organiser Add-In for Visual C++ .NET
*
* (c) Copyright 2000-2005 by Riverblade Limited (UK)
www.eeworm.com/read/378479/9229755
v mult_for.v
module mult_for(outcome,a,b);
parameter size=8;
input[size:1] a,b;
output[2*size:1] outcome;
reg[2*size:1] outcome;
integer i;
always @(a or b)
begin
outcome=0;
for(i=1; i
www.eeworm.com/read/378479/9229904
v resource1.v
module resource1(sum,a,b,c,d,sel);
parameter size=4;
output[size:0] sum;
input sel;
input[size-1:0] a,b,c,d;
reg[size:0] sum;
always @(a or b or c or d or sel)
begin
if(sel) sum=a+b;
else
www.eeworm.com/read/181830/9235663
m nullspace.m
function Z = nullspace(A)
% NULLSPACE -- find nullspace of a matrix
%
% Z = nullspace(A)
%
% This does essentially the same thing as the Matlab system
% routine NULL, except it uses t
www.eeworm.com/read/181335/9258851
h mel.h
/*
------------------------------------------------------------------------
filename: mel.h
author: g. m. crews
creation date: 25-Jul-1988
date of last revision: 19-Jul-1989
the following defi