代码搜索:Sign

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

代码结果 10,000
www.eeworm.com/read/101066/6256942

c cbrt.c

/* cbrt.c - software cube-root function */ /* Copyright 1992 Wind River Systems, Inc. */ /* modification history -------------------- 01a,30jul92,smb documentation. */ /* DESCRIPTION * Copyright (
www.eeworm.com/read/417461/6317389

m mrc1x2.m

SNRdb=[0 2 4 6 8 10 12 14 16 18 20 22 24 26 28 30]; %The graph will be drawn using different SNR values. for i=1:length(SNRdb)
www.eeworm.com/read/494459/6376645

c 很大很大数的加减法终结版.c

#include #include #define PR printf static int d;//外部变量,不建议像我这样使用~~ void transform(int a[],char b[])//该函数为将字符串组改存为整形数组并逆序存放 { int i,j; for(i=strlen(b)-1,j=0;i>=0;i--,j++)
www.eeworm.com/read/493005/6403376

c zmath.c

/* * zmath - extended precision integral arithmetic primitives * * Copyright (C) 1999 David I. Bell and Ernest Bowen * * Primary author: David I. Bell * * Calc is open software; you can redis
www.eeworm.com/read/493005/6403412

c zfunc.c

/* * zfunc - extended precision integral arithmetic non-primitive routines * * Copyright (C) 1999 David I. Bell, Landon Curt Noll and Ernest Bowen * * Primary author: David I. Bell * * Calc i
www.eeworm.com/read/486654/6524989

cpp 1221.cpp

/* This Code is Submitted by wywcgs for Problem 1221 on 2005-10-03 at 00:28:10 */ #include #include int main() { double power; long long total, r; int p, sign, i;
www.eeworm.com/read/485502/6551329

cpp fft.cpp

#include void fft(double x[32],double y[32],int n,int sign) { int i,j,k,l,m,n1,n2; double c,c1,e,s,s1,t,tr,ti; for(j=1,i=1;i
www.eeworm.com/read/485502/6551348

cpp fft.cpp

#include void fft(double x[64],double y[64],int n,int sign) { int i,j,k,l,m,n1,n2; double c,c1,e,s,s1,t,tr,ti; for(j=1,i=1;i
www.eeworm.com/read/483751/6594221

m bam.m

clear all; close all; %%%%%%%%标准样本矢量储存到两个矩阵中%%%%%%%% A=zeros(15,4); B=zeros(10,4); A(:,1)=[1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1]'; A(:,2)=[1,1,-1,-1,1,1,-1,-1,1,1,-1,-1,1,1,-1]'; A(:,3)=[1,1,1,
www.eeworm.com/read/483891/6597182

c misc.c

#include double mymax(double a, double b) { if (a > b) return a; return b; } double mymin(double a, double b) { if (a < b) return a; return b; } double sign(double a, double b) { i