代码搜索:usage
找到约 10,000 项符合「usage」的源代码
代码结果 10,000
www.eeworm.com/read/159601/10636538
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/159601/10636570
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/159601/10636842
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/159517/10644704
c random_number_generators.c
/* gran.c - gaussian random number generator */
double ran(); /* uniform generator */
double gran(m, s, iseed) /* usage: x = gran(m, s, &iseed); */
do
www.eeworm.com/read/277283/10649695
c main.c
/*
* Copyright (c) 1993 W. Richard Stevens. All rights reserved.
* Permission to use or modify this software and its documentation only for
* educational purposes and without fee is hereby granted
www.eeworm.com/read/421154/10752593
c bootpcmd.c
/*************************************************/
/* Center for Information Technology Integration */
/* The University of Michigan */
/*
www.eeworm.com/read/421085/10756058
readme
TRANSFORMATION USAGE (Garvin Hicking, )
====================
See the Documentation.html for complete instructions on how to use transformation plugins.
www.eeworm.com/read/349916/10781803
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/349916/10781834
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/349916/10781889
m e.m
% routine to get the square root of a number
% usage: via tree structured GA
function out = e(x)
out=exp(x);