代码搜索:Numeric
找到约 7,754 项符合「Numeric」的源代码
代码结果 7,754
www.eeworm.com/read/273525/4204260
mata norm.mata
*! version 1.0.1 09nov2004
version 9.0
mata:
/*
norms:
real scalar norm(numeric matrix A)
real scalar norm(numeric matrix A, p)
norm(A) returns the 2-norm
norm(A) returns
www.eeworm.com/read/273525/4206777
mata svd.mata
*! version 1.0.1 18jan2005
version 9.0
mata:
void svd(numeric matrix A, U, s, VT)
{
numeric matrix Acopy
if (isfleeting(A)) {
_svd(A, s, VT)
U = A
}
else {
_svd(Acopy=A, s,
www.eeworm.com/read/273525/4208479
mata gamma.mata
*! version 1.0.0 15oct2004
version 9.0
mata:
numeric matrix gamma(numeric matrix Z)
{
if (isreal(Z)) return(Re(exp(lngamma(C(Z)))))
return(exp(lngamma(Z)))
}
end
www.eeworm.com/read/273525/4209067
mata _qrinv.mata
*! version 1.1.0 01dec2004
version 9.0
mata:
real scalar _qrinv(numeric matrix A, | real scalar tol)
{
real scalar rank
numeric matrix Ainv
if (rows(A)
www.eeworm.com/read/168118/9938433
m las2logtype.m
function itype=las2logtype(mnem)
% itype=las2logtype(mnem)
%
% Convert a 4 letter las mnemonic identifying a log to a numeric logtype.
% The master list of possible numeric logtypes is to be fou
www.eeworm.com/read/305575/13765397
m vswap.m
function[varargout]=vswap(varargin)
%VSWAP(X,A,B) replaces A with B in numeric array X
%
% VSWAP(X,A,B) replaces A with B in numeric array X. A and B may be
% numbers, NAN, +/- INF, or NAN+SQRT(-
www.eeworm.com/read/455463/1614345
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/455463/1614607
m las2logtype.m
function itype=las2logtype(mnem)
% itype=las2logtype(mnem)
%
% Convert a 4 letter las mnemonic identifying a log to a numeric logtype.
% The master list of possible numeric logtypes is to be fou
www.eeworm.com/read/210914/4946953
m cell2num.m
function x = cell2num(X)
% a = cell2num(A)
% The input 'A' is a numeric cell array (one number per cell)
% The output 'a' is a numeric matrix.
%% This program was tested under versions 5.2 and 5
www.eeworm.com/read/173141/5379502
out floattypes.out
ij> -- ** insert decimal.sql
--
-- Test DECIMAL and NUMERIC. Note that we
-- know that DECIMAL and NUMERIC are pretty much the
-- same thing, so we don't do much testing with
-- the two types other t