代码搜索:Sign

找到约 10,000 项符合「Sign」的源代码

代码结果 10,000
www.eeworm.com/read/388422/8610408

m chap5_6f.m

function [kx,BsJ]=pid_fm_gaf(kx,BsJ) global rin yout timef F a=50;b=400; ts=0.001; sys=tf(b,[1,a,0]); dsys=c2d(sys,ts,'z'); [num,den]=tfdata(dsys,'v'); u_1=0;u_2=0; y_1=0;y_2=0; e_1=0;
www.eeworm.com/read/432253/8617755

cpp equation3-2-2.cpp

#include using namespace std; int main() { string input; cout > input; string tmp; int value = 0; int sign = 1;
www.eeworm.com/read/288552/8622685

java caculaterengine.java

package bluewater; public class CaculaterEngine { CaculaterEngine() { } public static int signNumber(char z) { int t = 0; if (z == '+') t = 1; if (z == '-') t = 1; if
www.eeworm.com/read/387420/8685063

m qual_det1.m

function [w1,w2,w3,w4,A]=qual_det1(coef,M,delta)%delta量化步长,M为多分辨水印的尺寸2倍 N=size(coef,1); a=1;b=1;c=1;d=2;K=100;%a,b,c,K是密钥,其中d满足ad-bc=1. numda=0.618; %numda黄金分割数0.618
www.eeworm.com/read/431346/8687165

m householder.m

function [M,f1,eig1]=householder(A,n) %%%%%%%%%%%%把一个对称矩阵化为三对角矩阵 %n=5; %A_{1}=[5,4,3,2,1;4,4,2,2,1;3,2,3,2,1;2,2,2,2,1;1,1,1,1,1]; A_{1}=A; eig1=zeros(n,1); for m=1:n-2 f(m)=0; for i=m+1:n
www.eeworm.com/read/287304/8695625

m ibm2num.m

function x=ibm2num(b) % ibm2num : convert IBM 32 bit floating point format to doubles % x=num2ibm(b) % b is a matrix of uint32 % x is a corresponding matrix of doubles % % % See also num2ibm % %
www.eeworm.com/read/431049/8711767

dat mcad12.dat

INCREMENT mathcad mathsoft 12.0 permanent uncounted HOSTID=ANY SIGN=0
www.eeworm.com/read/386856/8722957

m theperfectrake.m

function [y,z]=ThePerfectRake(insig,delays,sigLength,PShape,ChipSamples,chan_code,N,DPCCH_code,N_pilot,scramble_code) %*******************************************************************************
www.eeworm.com/read/287060/8728587

c 递归车厢.c

/**********递归题改为非递归题实例 车厢********/ #include #define MAX 4 int stack[MAX],p=-1; struct { int num; int sign; }train[MAX]; void sub() { int inc; if(p==MAX-
www.eeworm.com/read/386257/8759312

m parabola.m

function root=Parabola(f,a,b,x,eps) if(nargin==4) eps=1.0e-4; end f1=subs(sym(f),findsym(sym(f)),a); f2=subs(sym(f),findsym(sym(f)),b); if(f1==0) root=a; end if(f2==0) root=b;