代码搜索:Numeric
找到约 7,754 项符合「Numeric」的源代码
代码结果 7,754
www.eeworm.com/read/168845/5436081
hpp test4.hpp
//
// Copyright (c) 2000-2002
// Joerg Walter, Mathias Koch
//
// Permission to use, copy, modify, distribute and sell this software
// and its documentation for any purpose is hereby granted
www.eeworm.com/read/168845/5436090
hpp test6.hpp
//
// Copyright (c) 2000-2002
// Joerg Walter, Mathias Koch
//
// Permission to use, copy, modify, distribute and sell this software
// and its documentation for any purpose is hereby granted
www.eeworm.com/read/168845/5436098
hpp test1.hpp
//
// Copyright (c) 2000-2002
// Joerg Walter, Mathias Koch
//
// Permission to use, copy, modify, distribute and sell this software
// and its documentation for any purpose is hereby granted
www.eeworm.com/read/161559/5551316
sql q_totaldstcost.sql
-- Report per-destination cost over a specified time period
-- Adjust the period using BETWEEN clause (you can also use
-- AND acctstarttime >= (now() - '2 days'::INTERVAL))
SELECT tariffdesc AS "Des
www.eeworm.com/read/161559/5551352
sql c_voipcall_trig.sql
-- Trigger procedures for voipcall pre- and postprocessing
--
-- VoIP Billing Platform for GnuGk
-- Copyright (c) 2004, Michal Zygmuntowicz
--
-- This work is published under the GNU Public License (G
www.eeworm.com/read/475731/6776782
py fft.py
#!/usr/bin/env python
import math
import sys
import random
pi=math.pi
e=math.e
j=complex(0,1)
def fft(f,inv):
n=len(f)
if n==1:
return f
for p in 2,3,5:
if n%p==0:
www.eeworm.com/read/475187/6793838
m g6.m
function [G,A]=G6(Ang)
%The function G6.m gives the 6 Sector antenna numeric gain and
%attenuation.
%
%Input Parameters
%
%Ang is the angle between the direction of interest and the boresight
www.eeworm.com/read/475187/6793849
m g3.m
function [G,A]=G3(Ang)
%The function G3.m gives the 3 Sector antenna numeric gain and
%attenuation.
%
%Input Parameters
%
%Ang is the angle between the direction of interest and the boresight
www.eeworm.com/read/194440/8194161
m jddiff.m
function X = jddiff(X,nd)
%DIFF Differentiate or difference.
% DIFF may be called numeric arguments.
%
% For a numeric vector argument, DIFF computes differences.
% DIFF(X), for a vector X, is [X(2)-X
www.eeworm.com/read/249499/12491105
r stdize.r
### stdize.R: Standardization by centering and scaling
###
### $Id: stdize.R 89 2006-09-20 15:41:09Z bhm $
## This is a somewhat modified version of scale.default
stdize