代码搜索结果

找到约 10,000 项符合 Input 的代码

mlt.pin

-- Copyright (C) 1991-2005 Altera Corporation -- Your use of Altera Corporation's design tools, logic functions -- and other software and tools, and its AMPP partner logic -- functions,

encode.pin

-- Copyright (C) 1991-2005 Altera Corporation -- Your use of Altera Corporation's design tools, logic functions -- and other software and tools, and its AMPP partner logic -- functions,

ch8_4.c

/*CH8_4*/ #include #include void main() { int input[10]; float avg; /* 记录平均值*/ float min; /* 记录与平均值的差*/ int i; int tag; /* 记录满足条件的数的下标

correl.m

function[Rxy]=correl(x,y) % % function[Rxy]=correl(x,y) % calculate the correlation coeficient % of two vectors -input1 and input2 or % gives the vector of correlation

del2_5pt.m

function [output]=del2_5pt(input,delx) % DEL2_5PT ... compute the 5 point Laplacian % % [output]=del2_5pt(input,delx) % % DEL2_5PT computes the 5 point approximation to the laplacian operator of

uart_tran.pin

-- Copyright (C) 1991-2007 Altera Corporation -- Your use of Altera Corporation's design tools, logic functions -- and other software and tools, and its AMPP partner logic -- functions, and a

uart_tran.fit.rpt

Fitter report for uart_tran Fri Oct 24 09:08:21 2008 Quartus II Version 7.2 Build 151 09/26/2007 SJ Full Version --------------------- ; Table of Contents ; --------------------- 1. Legal

map_16qam.m

function output=map_16qam(input)%完成一个ofdm块的16QAM映射 [N,NL]=size(input); N=N/4; output=zeros(N,NL); for j=1:NL for n=1:N for ic=1:4 qam_input(ic)=input((n-1)*4+i

simpson.m

function simpson(a,b,M) %Simpson求积公式 %Input f is the function % a,b是积分下限与上限 % M是f的四阶导在(a,b)间的最大值 %Output % S 求积值 % R 余项值 syms x; f=input('f='); S=(b-a)*(s

fhtrap.m

function fhtrap(a,b,n) %复化梯形公式 %Input f is the function % a,b是积分下限与上限 % n是节点个数 %Output % T 求积值 syms x; f=input('f='); n=n-1; h=(b-a)/n; sum=0; F=zeros(n,1); F(n