代码搜索:parameter
找到约 10,000 项符合「parameter」的源代码
代码结果 10,000
www.eeworm.com/read/134087/14008855
m kwind.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/134087/14008958
m kparm.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/134087/14009097
m kparm1.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/236477/14014436
bak wio.c.bak
/*
File: WIO.C
Version: Ver2.90
Author: Zhang Jun
Date: 2005.3.29
Last Edit: 2006.7.12
Function:
DspOn
DispClr
InitPws
SetLine
KbdInit
CloseKbd
KbdRead
KbdHit
p
www.eeworm.com/read/236477/14014450
c wio.c
/*
File: WIO.C
Version: Ver2.97
Author: Zhang Jun
Date: 2005.3.29
Last Edit: 2007.2.26
Function:
DspOn
DispClr
InitPws
SetLine
KbdInit
CloseKbd
KbdRead
KbdHit
p
www.eeworm.com/read/236303/14022027
cs proceduretest.cs
using System;
using System.Collections.Generic;
using System.Text;
using System.Data.SqlClient;
using System.Data;
namespace ConTest
{
class procedureTest
{
public static
www.eeworm.com/read/236278/14023644
cpp control.cpp
#include "Control.h"
Control::Control( int argc, char** argv ) {
// parse the command line options to set all vars
if( ( argc % 2 == 0 ) || ( argc == 1 ) ) {
cerr
www.eeworm.com/read/236232/14024556
cpp cjstatusbar.cpp
/*****************************************************************************
*
* Autor: Joachim Raidl
* Adresse: Joachim.Raidl@iname.com
* Klasse: XPaneInfo, CCJStatusBar
* Files:
www.eeworm.com/read/236168/14029807
v count4_tp.v
`timescale 1ns/1ns
`include "count4.v"
module coun4_tp;
reg clk,reset;
wire[3:0] out;
parameter DELY=100;
count4 mycount(out,reset,clk);
always #(DELY/2) clk = ~clk;
initial
begin
clk =0