代码搜索:parameter
找到约 10,000 项符合「parameter」的源代码
代码结果 10,000
www.eeworm.com/read/445470/7595240
m kaiser_window_parameters_for_filter_design.m
% kparm.m - Kaiser window parameters for filter design.
%
% [alpha, N] = kparm(DF, A)
%
% alpha = window shape parameter
% N = window length (odd)
% DF = Df/fs = transition width in units of fs
% A =
www.eeworm.com/read/445470/7595265
m kaiser_window.m
% kwind.m - Kaiser window.
%
% w = kwind(alpha, N) = row vector
%
% alpha = Kaiser window shape parameter
% N = 2M+1 = window length (must be odd)
function w = kwind(alpha, N)
M = (N-1) / 2;
den
www.eeworm.com/read/445424/7595577
f90 macronumber.f90
integer function MacroNumber(MacroName)
! -------------------------------------------------------------------------
! Purpose: Calculate the sequence number of a macro in the macro list.
!
www.eeworm.com/read/444916/7602784
cc args.cc
/** @file
Utility functions to work with commandline arguments
\brief Commandline arguments utility functions
@author Martin Petricek
*/
#include "args.h"
#include
#include
#
www.eeworm.com/read/444916/7602815
cc base.cc
/** @file
Base - base class handling command line commands
*/
#include "base.h"
#include
#include "util.h"
namespace gui {
using namespace std;
/** Structure holding command parameters
www.eeworm.com/read/444916/7602818
cc paramdialog.cc
/** @file
CommandLine - class representing command window (editation of command and output of previous commands)
*/
#include "paramdialog.h"
#include "base.h"
#include "util.h"
#include
#
www.eeworm.com/read/372875/7604477
c 2410lib.c
/****************************************************************************
【文 件 名 称】2410lib.c
【功 能 描 述】FS2410XP教学平台实验程序
【程 序 版 本】3.0
【创建及创建日期】优龙公司/2005-XX-XX
【修改及修改日期】2005-5-23
*****
www.eeworm.com/read/444559/7611876
c harddisk.c
/****************************************Copyright (c)**************************************************
** 广州周立功单片机发展有限公司
** 研 究
www.eeworm.com/read/444331/7613909
m chap3_6.m
%Fuzzy Tunning PID Control
clear all;
close all;
a=newfis('fuzzpid');
a=addvar(a,'input','e',[-3,3]); %Parameter e
a=addmf(a,'input',1,'NB','zmf',[-3,-1]);
a=addmf(a,'
www.eeworm.com/read/444331/7613910
m chap3_4.m
%Fuzzy Controller
clear all;close all;
a=newfis('fuzz_ljk');
f1=1.0;
a=addvar(a,'input','e',[-3*f1,3*f1]); % Parameter e
a=addmf(a,'input',1,'NB','zmf',[-3*f1,-1*f1]);
a=