代码搜索结果

找到约 4,719 项符合 Temperature 的代码

exm04311_1.m

%exm04311_1.m %直接对域赋值法产生"单构架"。 green_house.name='一号房'; %构架域由(构架名).(域名)标识。 green_house.volume='2000立方米'; % green_house.parameter.temperature=[31.2 30.4 31.6 28.7

exm04311_2.m

%exm04311_2.m green_house.name='一号房'; green_house.volume='2000立方米'; green_house.parameter.temperature=[31.2 30.4 31.6 28.7 29.7 31.1 30.9 29.6]; green_hou

colddays.c

// colddays.c -- finds percentage of days below freezing #include int main(void) { const int FREEZING = 0; float temperature; int cold_days = 0; int all_days = 0;

setf.cpp

// setf.cpp -- using setf() to control formatting #include int main() { using std::cout; using std::endl; using std::ios_base; int temperature = 63; cout

ex3_1.m

clear; %清除工作空间中的变量 f=input('Input Fahrenheit temperature:'); c=5*(f-32)/9

c2k.m

% C2K Convert a temperature from Centigrade to Kelvin % % [K] = C2K (C) converts C into Kelvin % function [K] = C2K (C) K = C + 273.15;

c2f.m

% C2F Convert a temperature from Centigrade to Farenheit % % [F] = C2F (C) converts C into Farenheit % function [F] = C2F (C) F = 9/5*C + 32;

k2f.m

% K2F Convert a temperature from Kelvin to Farenheit % % [F] = K2F (K) converts K into Farenheit % function [F] = K2F (K) F = C2F(K2C(K));

f2k.m

% F2K Convert a temperature from Farenheit to Kelvin % % [K] = F2K (F) converts F into Kelvin % function [K] = F2K (F) K = C2K(F2C(F));

golf.names

Play, Don't Play. outlook: sunny, overcast, rain. temperature: continuous. humidity: continuous. windy: true, false.