代码搜索结果

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

thermospeedhc.m

function T = thermospeedHC(Ea,Estd,walkers,dEtgt,v,e,T,t,P) % Heat capacity thermospeed temperature update method supplied with SA Tools. % Copyright (c) 2002, by Richard Frost and Frost Concepts.

geometric.m

function T = geometric(Ea,Estd,walkers,dEtgt,v,e,T,t,P) % Geometric temperature update method supplied with SA Tools. % Copyright (c) 2002, by Richard Frost and Frost Concepts. % See http://www.fro

berkeley.m

function T = berkeley(Ea,Estd,walkers,dEtgt,v,e,T,t,P) % Berkeley temperature update method supplied with SA Tools. % Copyright (c) 2002, by Richard Frost and Frost Concepts. % See http://www.frost

hartley.m

function T = hartley(Ea,Estd,walkers,dEtgt,v,e,T,t,P) % Hartley temperature update method supplied with SA Tools. % Copyright (c) 2002, by Richard Frost and Frost Concepts. % See http://www.frostco

retrospect.m

function T = retrospect(Ea,Estd,walkers,dEtgt,v,e,T,t,P) % Retrospective temperature update method supplied with SA Tools. % Copyright (c) 2002, by Richard Frost and Frost Concepts. % See http://ww

2-9.c

#include"stdio.h" main() { float T[4][7],sum,avg; int i,j; float f1,*f2; clrscr(); sum=avg=0; scanf("%f",&T[0][0]); sum=sum+T[0][0]; for(i=0;i

2-8.c

#include"stdio.h" main() { float T[4][7],sum,avg; int i,j; float f1,*f2; clrscr(); sum=avg=0; f1=1.0; f2=&f1; for(i=0;i

2-7.c

#include"stdio.h" main() { float T[4][7],sum,avg; int i,j; clrscr(); sum=avg=0; for(i=0;i

cf.lua

-- temperature conversion table (celsius to farenheit) for c0=-20,50-1,10 do io.write("C ") for c=c0,c0+10-1 do io.write(string.format("%3.0f ",c)) end io.write("\n") io.write("F ") for c=c

6_11.cpp

#include using namespace std; int main() { enum Day { SUN, MON, TUE, WED, THU, FRI, SAT }; //定义枚举类型 float high[SAT+1] = {80.0, 90.0, 91.0, 80.9, 90.4, 90.5, 80.7}; //使用枚举类型 for (i