代码搜索:Variable

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

代码结果 10,000
www.eeworm.com/read/461524/7225987

htm repsmith.htm

UDDF - ReportSmith
www.eeworm.com/read/461294/7229538

txt readme.txt

Tree Structured Genetic Algorithm An algorithm for Genetic Programming Ben.McKay & Mark Willis (c)
www.eeworm.com/read/461294/7229843

m mav.m

function [out]=mav(v,n,all,in) % % mav.m % % Moving average filter % % v = current variable % n = number of steps to include % all = 0 to filter entire data set % in = input data % out
www.eeworm.com/read/460732/7242391

pbp program.pbp

'************************************************************************** ' RFID based Medicine Reminder (e-Nurse System) ' ============================================= '************************
www.eeworm.com/read/392997/7247727

h synch.h

// synch.h // Data structures for synchronizing threads. // // Three kinds of synchronization are defined here: semaphores, // locks, and condition variables. The implementation for // semaphores is
www.eeworm.com/read/460375/7252466

am makefile.am

EXTRA_DIST = makefile run variable_task.c
www.eeworm.com/read/459528/7274305

m plotsky.m

function p_handle = plotsky(az,el,prn_pass,plot_title,spoke_label) % p_handle = plotsky(az,el,prn,plot_title,spoke_label); % % Function to plot the trajectories on a polar sky (azimuth/elevation)
www.eeworm.com/read/458682/7291479

sh revposparams.sh

#!/bin/bash # revposparams.sh: Reverse positional parameters. # Script by Dan Jacobson, with stylistic revisions by document author. set a\ b c d\ e; # ^ ^ Spaces escaped # ^ ^
www.eeworm.com/read/458682/7291645

sh ex10.sh

#!/bin/bash # Tip: # If you're unsure of how a certain condition would evaluate, #+ test it in an if-test. echo echo "Testing \"0\"" if [ 0 ] # zero then echo "0 is true." else echo "0 i
www.eeworm.com/read/458682/7291686

sh reply.sh

#!/bin/bash # reply.sh # REPLY is the default value for a 'read' command. echo echo -n "What is your favorite vegetable? " read echo "Your favorite vegetable is $REPLY." # REPLY holds the value of