代码搜索:usage

找到约 10,000 项符合「usage」的源代码

代码结果 10,000
www.eeworm.com/read/288527/8626290

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/288527/8626560

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/288527/8626847

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/288527/8626864

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/288527/8627048

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/387658/8660222

c test13.c

#include int main(int argc, char **argv) { int i; fprintf(stdout, "I'm test13.\n"); for (i = 0; i < argc; i++) { fprintf(stdout, "argv[%d] = %s\n", i, argv[i]); } if (arg
www.eeworm.com/read/387211/8699587

c serial_comm_4.c

/********************************************** * File: Serial_Comm_4.C * Description: Serial Communication Example 3 Bluetooth * Created Date: 2007-10-01 * Last Modified: 2007-10-01 *
www.eeworm.com/read/386582/8737534

sh p12topem.sh

#!/bin/bash if [ $# -ne 2 ] then echo "Usage: $0 alias passphrase" exit -1 fi openssl pkcs12 -passin pass:"$2" -passout pass:"$2" -in $1.p12 -out $1.pem
www.eeworm.com/read/386582/8737576

sh signfile.sh

#!/bin/bash if [ $# -ne 3 ] then echo "Usage: $0 alias filename passpharse" exit -1 fi openssl dgst -passin pass:"$3" -binary -sha1 -sign $1.pem $2 > $2.sign
www.eeworm.com/read/386582/8737702

c ln.c

#include #include #include #include static int usage() { fprintf(stderr,"ln [-s] \n"); return -1; } int ln_main(int argc, char *argv[