代码搜索结果
找到约 4,719 项符合
Temperature 的代码
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;
ex3_1.m
clear; %清除工作空间中的变量
f=input('Input Fahrenheit temperature:');
c=5*(f-32)/9
ad-temperature.dep
1
Debug
$PROJ_DIR$\Debug\Exe\AD-temperature.d51
forj10
$WS_DIR$\AD-temperature.ewp
light_and_temperature_switch.htm
Light and temperature switch
ex5-1.c
#include
struct mepoint {
unsigned char name[11];
unsigned char pressure;
unsigned char temperature;
} po1={ "firstpoint", 0x99, 0x64};
void main(
ex5-3.c
#include
#include
struct mepoint {
unsigned char name[11];
unsigned char pressure;
unsigned char temperature;
};
struct mepoint p
ex5-2.c
#include
void main(void) {
struct mepoint {
unsigned char name[11];
unsigned char pressure;
unsigned char temperature;
} po1={ "fi
ex5-4.c
#include
#include
struct mepoint {
unsigned char name[11];
unsigned char num, pressure, temperature;
};
struct mepoint po[3]=
{