代码搜索:Variable
找到约 10,000 项符合「Variable」的源代码
代码结果 10,000
www.eeworm.com/read/493401/6402255
h synch-sleep.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/493401/6402270
h synch-sem.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/493005/6403450
environment
Environment variables
CALCPATH
A :-separated list of directories used to search for
resource filenames (*.cal files) that do not begin with:
/ ./ ../ ~
If this variable does not exist, a
www.eeworm.com/read/493064/6405464
c fet410_lcd_03.c
//*****************************************************************************
// MSP-FET430P410 Demo - LCD, Display Numbers on a 4-Mux LCD
//
// Description: This program displays digits stored
www.eeworm.com/read/490235/6460970
map prueba_init.map
RAM Allocation
Variable Address Size
--------------------------------------------------------------------------------
EEPROM Allocation
www.eeworm.com/read/489224/6476890
txt readme.txt
README FOR THE BNBGUI
INSTALLATION
To function BNB needs:
Matlab 5.3 or newer
Optimization Toolbox 2.0
the Courier-LD font (8 points, regular)
Unzip BNB.zip to an empty directory that's i
www.eeworm.com/read/479166/6700208
cpp fig07_07.cpp
// Fig. 7.7: fig07_07.cpp
// A const variable must be initialized.
int main()
{
const int x; // Error: x must be initialized
x = 7; // Error: cannot modify a const variable
return
www.eeworm.com/read/479166/6700269
cpp fig05_01.cpp
// Fig. 5.1: fig05_01.cpp
// Counter-controlled repetition.
#include
using std::cout;
using std::endl;
int main()
{
int counter = 1; // declare and initialize control variable
www.eeworm.com/read/264046/11331541
m boxcox.m
function xt = boxcox(x, trans, bin, out)
% BOXCOX Optimal Box-Cox transformation for homoskedasticity
%
% xt=boxcox(x,trans,bin,out)
%
% x: Time series (*)
% trans: Vector of tansformations ([-
www.eeworm.com/read/263959/11335764
m funxy.m
% Script file: funxy.m
%
% Purpose:
% This program solves the function f(x,y) for a
% user-specified x and y, where f(x,y) is defined as:
% _
% |
%