代码搜索结果

找到约 5,431 项符合 Temperature 的代码

temp

class VolcanoRobot extends ScienceRobot { String status; int speed; float temperature; int power; }

volcanorobot.java

class VolcanoRobot { String status; int speed; float temperature; void checkTemperature() { if (temperature > 660) { status = "returning home";

example1a.m

%Temperature distribution in a rod %See example 9 %Discretization method: Finite difference % Solution method: SOR clear all; a=[];b=[];c=[];d=[];x=[];T=[];analytical=[]; nn = input('Number of i

example2afvm.m

% Transient temperature distribution in aninfinite plate with the thickness 2L. % Initially temperature is Tinit when it is exposed to a fluid with % the temperature Tfluid. % Explicit method % c

ex6_1.m

% % This program plots Si, Ge, and GaAs conductivities % as a function of temperature as described in Example 6.1 % % Copyright (c) 1999 by P.Bretchko and R.Ludwig % "RF Circuit Design:

group__ds1631.html

Procyon AVRlib: ds1631: Dallas DS1631 Tempera

msp430x20x3_sd16a_02.c

//****************************************************************************** // MSP430F20x3 Demo - SD16, Using the Integrated Temperature Sensor // // Description: Use SD16 and it's integrate

mch04-10.txt

叠加其他数据集的条形图 TCE = [515 420 370 250 135 120 60 20]; temp = [29 23 27 25 20 23 23 27]; days = 0:5:35; bar(days,temp) xlabel('Day') ylabel('Temperature (^{o}C)') h1 = gca; h2 = axes('Position',

mch04-07.txt

条形图坐标轴数据的指定 temp = [29 23 27 25 20 23 23 27]; days = 0:5:35; bar(days,temp) xlabel('Day') ylabel('Temperature (^{o}C)')