代码搜索:usage
找到约 10,000 项符合「usage」的源代码
代码结果 10,000
www.eeworm.com/read/461294/7229569
m e.m
% routine to get the square root of a number
% usage: via tree structured GA
function out = e(x)
out=exp(x);
www.eeworm.com/read/461294/7229859
m l.m
%
% routine to get the square root of a number
%
% usage: via tree structured GA
%
function out = l(x)
%
%
out = log(x);
www.eeworm.com/read/461294/7229913
m p.m
%
% routine to get the square root of a number
%
% usage: via tree structured GA
%
function out = p(u)
%
%
out=exp(u);
www.eeworm.com/read/461294/7229970
m e.m
%
% routine to get the square root of a number
%
% usage: via tree structured GA
%
function out = e(x)
%
%
out=exp(x);
www.eeworm.com/read/461294/7229976
m s.m
%
% routine to get the square of a number
%
% usage: via tree structured GA
%
function out = s(x)
%
%
out=x.^2.0;
www.eeworm.com/read/461294/7230025
m r.m
%
% routine to get the square root of a number
%
% usage: via tree structured GA
%
function out = r(x)
%
%
out=sqrt(abs(x));
www.eeworm.com/read/460770/7241033
sh makelib.sh
#! /bin/sh
[ $1 ] || {
echo "Usage: $0 [...]"
exit 1
}
libname=$1; shift
rdflib c $libname
for f in $*; do
rdflib a $libname $f $f
done
www.eeworm.com/read/458400/7297052
c sentence.c
#include
#include "sentence.h"
/**********************************************
* Function: nmea_zero_GPGGA(nmeaGPGGA *pack)
* Input Variables: nmeaGPGGA *pack
* Return Variables:
www.eeworm.com/read/458392/7297156
m larval.m
function ypred = LARval(K,solution)
% USAGE
%
% ypred = LARval(K,solution)
if size(K,2)==size(solution.Beta,2);
ypred = K *solution.Beta'+solution.b;
else
yp
www.eeworm.com/read/457607/7322388
sh column.sh
#!/usr/bin/perl
# Mark Claypool
# Last significantly modified: December, 2001
# This program prints out fields of an indicated column.
# The columns are numbered 0, 1, 2, 3 ...
require 'getopts.pl'