代码搜索:测温精度
找到约 2,905 项符合「测温精度」的源代码
代码结果 2,905
www.eeworm.com/read/327001/13104686
m exp3_1.m
clear
clc
close
t0=0;
tfinal=15;
x0=[0.5;0]; %初始化,电感电流为0,电容电压为0.5v
%tol=0.001; %数值计算精度
[t,x]=ode45('elecsys',t0,tfinal,x0);
%elecsys是系统微分方程的描述函数
figure(1)
subplot(211)
plot(t,x(:,1))
title
www.eeworm.com/read/241836/13114038
m adjd.m
function adjd(uw,fit2) %方向观测精度
global ed dd dd1 sd pn ni si e d g f s t net
global m1 m2 m3 ms pp md ma x0 y0 x y sid dir az c
global a ql pa3 qls w
fprintf(fit2,' adjusted directions and their
www.eeworm.com/read/241836/13114078
m adjd.m
function adjd(uw,fit2) %方向观测精度
global ed dd dd1 sd pn ni si e d g f s t net
global m1 m2 m3 ms pp md ma x0 y0 x y sid dir az c
global a ql pa3 qls w
fprintf(fit2,' adjusted directions and their
www.eeworm.com/read/241807/13115552
m exp3_1.m
clear
clc
close
t0=0;
tfinal=15;
x0=[0.5;0]; %初始化,电感电流为0,电容电压为0.5v
%tol=0.001; %数值计算精度
[t,x]=ode45('elecsys',t0,tfinal,x0);
%elecsys是系统微分方程的描述函数
figure(1)
subplot(211)
plot(t,x(:,1))
title
www.eeworm.com/read/325030/13229769
m exp3_1.m
clear
clc
close
t0=0;
tfinal=15;
x0=[0.5;0]; %初始化,电感电流为0,电容电压为0.5v
%tol=0.001; %数值计算精度
[t,x]=ode45('elecsys',t0,tfinal,x0);
%elecsys是系统微分方程的描述函数
figure(1)
subplot(211)
plot(t,x(:,1))
title
www.eeworm.com/read/136685/13366262
m exm060631_1.m
imageinf=imfinfo('forest.tif')
[X8,cmap]=imread('forest.tif'); %由位深度8可知图象数据矩阵X8是unit8类
subplot(1,2,1);
image(X);colormap(cmap);axis image off
X64=double(X8)+1; %把图象数据阵转换为双精度类型矩阵X64
subplo
www.eeworm.com/read/136681/13367032
m exp3_1.m
clear
clc
close
t0=0;
tfinal=15;
x0=[0.5;0]; %初始化,电感电流为0,电容电压为0.5v
%tol=0.001; %数值计算精度
[t,x]=ode45('elecsys',t0,tfinal,x0);
%elecsys是系统微分方程的描述函数
figure(1)
subplot(211)
plot(t,x(:,1))
title
www.eeworm.com/read/320157/13432333
txt delay.txt
从精度考虑,它得研究结果是:
void delay2(unsigned char i)
{
while(--i);
}
为最佳方法。
分析:假设外挂12M(之后都是在这基础上讨论)
我编译了下,传了些参数,并看了汇编代码,观察记录了下面的数据:
delay2(0):延时518us 518-2*256=6
www.eeworm.com/read/319335/13453636
m exm060631_1.m
imageinf=imfinfo('forest.tif')
[X8,cmap]=imread('forest.tif'); %由位深度8可知图象数据矩阵X8是unit8类
subplot(1,2,1);
image(X);colormap(cmap);axis image off
X64=double(X8)+1; %把图象数据阵转换为双精度类型矩阵X64
subplo
www.eeworm.com/read/315928/13534799
m halfinterval.m
function root=HalfInterval(f,a,b,eps)
% 二分法求函数f在[a,b]上的一个零点
% 函数名:f
% 区间左端点a
% 区间右端点b
% 根的精度:eps
% 求出的函数零点:root
if(nargin==3)
eps=1.0e-4;
end
f1=subs(sym(f),findsym(sym(f)),a);
f2=sub