代码搜索结果
找到约 5,431 项符合
Temperature 的代码
computerminf.asv
%使用模拟退火法求函数f(x,y)=5sin(x*y)+x^2+y^2的最小值
XMAX=4; %搜索的最大区间
YMAX=4; %搜索的最大区间
MarkovLength=10000; %马可夫链长度
DecayScale=0.95; %衰减参数0.95
StepFactor=0.02; %步长因子
Temperature=100; %初始温度
Tolerance=1e-8; %容
computerminf.m
%使用模拟退火法求函数f(x,y)=5sin(x*y)+x^2+y^2的最小值
format long
XMAX=4; %搜索的最大区间
YMAX=4; %搜索的最大区间
MarkovLength=10000; %马可夫链长度
DecayScale=0.95; %衰减参数0.95
StepFactor=0.02; %步长因子
Temperature=100; %初始温度
Toler
ex4-18.c
#include
main() {
float T[3][4]=
{
{60.1,70.3,80.5,90.7},{30.0,40.1,50.2,60.3}, {90.0,80.2,70.4,60.6}
};
float * search(float (* pointer)[4],
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('P
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)')
mch04-08.txt
设置Y轴范围
temp = [29 23 27 25 20 23 23 27];
days = 0:5:35;
bar(days,temp)
xlabel('Day')
ylabel('Temperature (^{o}C)')
set(gca,'YLim',[15 30],'Layer','top')
mch04-09.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('Posi
ds18b20.c
/*************************************************************
*开始
*************************************************************/
#include "reg52.h"
#include "intrins.h"
#include "ZLG7289.h"
#d
dispeh.m
function dispEh(Eh)
% Eh matrix display method supplied with SA Tools.
% Copyright (c) 2002, by Richard Frost and Frost Concepts.
% See http://www.frostconcepts.com/software for information on SA T
dispet.m
function dispEt(Tt,Et,Etarget,ert,Kt,Ebsft)
% Et data display method supplied with SA Tools.
% Copyright (c) 2002, by Richard Frost and Frost Concepts.
% See http://www.frostconcepts.com/software f