代码搜索:Sign
找到约 10,000 项符合「Sign」的源代码
代码结果 10,000
www.eeworm.com/read/481966/6633452
cpp 2429.cpp
/* This Code is Submitted by wywcgs for Problem 2429 on 2007-01-01 at 17:33:55 */
#include
#include
#include
#include
using namespace std;
const int DN
www.eeworm.com/read/481966/6633898
cpp 1985.cpp
/* This Code is Submitted by wywcgs for Problem 1985 on 2006-11-12 at 19:43:08 */
#include
#include
#include
#include
using namespace std;
const int DN
www.eeworm.com/read/481387/6639629
m riddling.m
%产生一个N(0,1)正态分布随机数
%采用筛选法,精度较高
%其他方法可参阅《现代应用数学手册--概率统计与随机过程卷》清华大学出版社马振华主编
%function y=riddling()
function y=riddling()
sign=0;
while 1
x=rand(1,2);
v1=2*x(1)-1;v2=2*x(2)-1;
s=v1^2
www.eeworm.com/read/481504/6641901
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/481249/6646478
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/481033/6655972
c x86_64-gcc.c
/*
* x86_64 BIGNUM accelerator version 0.1, December 2002.
*
* Implemented by Andy Polyakov for the OpenSSL
* project.
*
* Rights for redistribution and usage in source an
www.eeworm.com/read/480414/6663542
m all_detector.m
close all
clear all;
clc;
K = 20; %No. of users
A = eye(K);
snr = -20:2:20;
N = 200; %No. of bits
Navg = 10; %No. of repititions
SPIC = 10;
www.eeworm.com/read/480529/6665807
txt 10-04.txt
%例10-4 判断某一年是否为闰年。。
%该函数用于判断某一年是否为闰年
%使用格式为isleapea(y),其中y是用户所要计算的年份
function isleapyear(year)
sign=0;
if rem(year,4)==0
sign=sign+1;
end
if rem(year,100)==0
sign=sign-1;
end
i
www.eeworm.com/read/477625/6729476
m chap5_4f.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/477739/6733493
m theperfectrake.m
function [y,z]=ThePerfectRake(insig,delays,sigLength,PShape,ChipSamples,chan_code,N,DPCCH_code,N_pilot,scramble_code)
%*******************************************************************************