代码搜索:Variable
找到约 10,000 项符合「Variable」的源代码
代码结果 10,000
www.eeworm.com/read/123658/14616750
projects
0. Improved efficiency.
* Parse and output array initializers an element at a time, freeing
storage after each, instead of parsing the whole initializer first and
then outputting. This would reduce
www.eeworm.com/read/388251/8622823
hpp equation.hpp
#pragma ident "$Id: $"
/**
* @file Equation.hpp
* GNSS Data Structure to define and handle GNSS equations.
*/
#ifndef EQUATION_HPP
#define EQUATION_HPP
//========================================
www.eeworm.com/read/397204/8062373
m simp2var.m
function I=simp2var(fsimp,c,d,a,b,m,n)
%I=simp2var('fsimp',c,d,a,b,m,n)
%Simpson integration for 2 variables
%Edit boundaries 'c', 'd', they can be variable.
%'a' and 'b' are fixed boundaries
www.eeworm.com/read/318168/13484519
def autoit.def
; PSPad code template for AutoIT Version 2.63
; Created by PSPad 11.11.2002 15:21
; Author: petrf@wo.cz
;
[Macro definition]
%OnOff%=@C On/Off=,,,On;Off,
%Number%=@E Number=,,0,,
%Number2%=
www.eeworm.com/read/152629/5673161
java undirectedmodel.java
/* Copyright (C) 2003 Univ. of Massachusetts Amherst, Computer Science Dept.
This file is part of "MALLET" (MAchine Learning for LanguagE Toolkit).
http://www.cs.umass.edu/~mccallum/mallet
Th
www.eeworm.com/read/334162/12628703
mli exprdag.mli
(*
* Copyright (c) 1997-1999, 2003 Massachusetts Institute of Technology
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public Lic
www.eeworm.com/read/334162/12628787
mli expr.mli
(*
* Copyright (c) 1997-1999, 2003 Massachusetts Institute of Technology
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public Lic
www.eeworm.com/read/169779/9838564
c expand.c
/* Variable expansion functions for GNU Make.
Copyright (C) 1988, 89, 91, 92, 93, 95 Free Software Foundation, Inc.
This file is part of GNU Make.
GNU Make is free software; you can redistribute it a
www.eeworm.com/read/458682/7291488
sh csubloop.sh
#!/bin/bash
# csubloop.sh: Setting a variable to the output of a loop.
variable1=`for i in 1 2 3 4 5
do
echo -n "$i" # The 'echo' command is critical
done`
www.eeworm.com/read/438832/7725438
sh csubloop.sh
#!/bin/bash
# csubloop.sh: 将循环输出的内容设置到变量中.
variable1=`for i in 1 2 3 4 5
do
echo -n "$i" # 对于在这里的命令替换来说
done` #+ 这个'echo'命令是非常关键的.
echo "variable1 = $va