代码搜索:positional
找到约 115 项符合「positional」的源代码
代码结果 115
www.eeworm.com/read/103192/6220829
txt args.txt
SUMMARY Access runtime options as names and values.
KEYWORDS argConfig argSeqn argOpen argName argValu
USAGE
#include
// basic loockup structure
typedef char *ArgName;
typedef
www.eeworm.com/read/101015/6262273
txt args.txt
SUMMARY Access runtime options as names and values.
KEYWORDS argConfig argSeqn argOpen argName argValu
USAGE
#include
// basic loockup structure
typedef char *ArgName;
typedef
www.eeworm.com/read/264420/11315436
m psplit.m
function [tx,ty,vx,vy]=pslit(x,y,p)
%
% Positional percentage split
%
% p defines the position to split the data
% 0-p (%) = training
% p-100 (%) = validation
%
[D L]=size(x);
tsiz
www.eeworm.com/read/124842/14534182
m psplit.m
function [tx,ty,vx,vy]=pslit(x,y,p)
%
% Positional percentage split
%
% p defines the position to split the data
% 0-p (%) = training
% p-100 (%) = validation
%
[D L]=size(x);
tsiz
www.eeworm.com/read/116739/14956443
dater
#!/bin/sh
# Script name: dater
# Purpose: set positional parameters with the set command
# and shift through the parameters.
set `date`
while [ $# -gt 0 ]
do
echo $1
shift
done
www.eeworm.com/read/116739/14956452
greetings
#!/bin/sh
# Script name: greetings
echo "This script is called $0."
echo "$0 $1 and $2"
echo "The number of positional parameters is $#"
www.eeworm.com/read/214740/15089935
m psplit.m
function [tx,ty,vx,vy]=pslit(x,y,p)
%
% Positional percentage split
%
% p defines the position to split the data
% 0-p (%) = training
% p-100 (%) = validation
%
[D L]=size(x);
tsiz
www.eeworm.com/read/202785/15373229
m psplit.m
function [tx,ty,vx,vy]=pslit(x,y,p)
%
% Positional percentage split
%
% p defines the position to split the data
% 0-p (%) = training
% p-100 (%) = validation
%
[D L]=size(x);
tsiz
www.eeworm.com/read/458682/7291364
sh ex22a.sh
#!/bin/bash
# Planets revisited.
# Associate the name of each planet with its distance from the sun.
for planet in "Mercury 36" "Venus 67" "Earth 93" "Mars 142" "Jupiter 483"
do
set -- $planet #
www.eeworm.com/read/339483/12230483
sh ex22a.sh
#!/bin/bash
# Planets revisited.
# Associate the name of each planet with its distance from the sun.
for planet in "Mercury 36" "Venus 67" "Earth 93" "Mars 142" "Jupiter 483"
do
set -- $planet #