代码搜索:精度
找到约 2,443 项符合「精度」的源代码
代码结果 2,443
www.eeworm.com/read/343026/11982371
sql 2.1 日期概念理解中的一些测试.sql
--A. 测试 datetime 精度问题
DECLARE @t TABLE(date char(21))
INSERT @t SELECT '1900-1-1 00:00:00.000'
INSERT @t SELECT '1900-1-1 00:00:00.001'
INSERT @t SELECT '1900-1-1 00:00:00.009'
INSERT @t SELECT '
www.eeworm.com/read/342784/11999247
m tdoa_rmse.m
function X = TDOA_RMSE(MS, EMS)
%
%TDOA_RMSE 本函数用于实现无线定位精度RMSE的计算
% - MS 为移动台的真实位置;
% - EMS 为移动台的估计位置。
%See also: TDOA_RMSE.m
% 参数检查:
if nargout ~= 1 & nargout
www.eeworm.com/read/339239/12247348
m itae.m
function ss=itae(aa)
%ITAE 计算ITAE积分性能值
global a ss
a=aa;
Tspan=evalin('base','Tspan'); %从主空间获得采样时间向量
opts=simset('RelTol',0.0001); %设定仿真时的相对精度
[tt,x,s]=sim('smodel',Tspan,opts); %对SIMUL
www.eeworm.com/read/252582/12274587
m mifa.m
function [m, u, index]=mifa(A, ep, it_max)
% 求矩阵特最大模征值的幂法,其中
% A --- 矩阵
% ep --- 精度要求
% it_max --- 最大迭代次数
% m --- 最大特征值
% u --- 对应最大特征值的特征向量
% index --- in
www.eeworm.com/read/129636/14234776
m itae.m
function ss=itae(aa)
%ITAE 计算ITAE积分性能值
global a ss
a=aa;
Tspan=evalin('base','Tspan'); %从主空间获得采样时间向量
opts=simset('RelTol',0.0001); %设定仿真时的相对精度
[tt,x,s]=sim('smodel',Tspan,opts); %对SIMUL
www.eeworm.com/read/212376/15157147
m itae.m
function ss=itae(aa)
%ITAE 计算ITAE积分性能值
global a ss
a=aa;
Tspan=evalin('base','Tspan'); %从主空间获得采样时间向量
opts=simset('RelTol',0.0001); %设定仿真时的相对精度
[tt,x,s]=sim('smodel',Tspan,opts); %对SIMUL
www.eeworm.com/read/210370/15200178
sql 2.1 日期概念理解中的一些测试.sql
--A. 测试 datetime 精度问题
DECLARE @t TABLE(date char(21))
INSERT @t SELECT '1900-1-1 00:00:00.000'
INSERT @t SELECT '1900-1-1 00:00:00.001'
INSERT @t SELECT '1900-1-1 00:00:00.009'
INSERT @t SELECT '
www.eeworm.com/read/209546/15217569
m tdoa_rmse.m
function X = TDOA_RMSE(MS, EMS)
%TDOA_RMSE 本函数用于实现无线定位精度RMSE的计算
% - MS 为移动台的真实位置;
% - EMS 为移动台的估计位置。
% 参数检查:
if nargout ~= 1 & nargout ~= 0,
error('Too many o
www.eeworm.com/read/38039/1091580
mnu secenvaux.mnu
SEC#ENV#AUX SEC#ENV#AUX
Set environment for Sketcher
#
Grid 栅格
Modify grid parameters.
修改栅格参数。
Num#Digits 小数位数
Change number of decimal places that dimensions will have.
改变尺寸的小数位数
Accuracy 精度
Change
www.eeworm.com/read/487231/1239327
pas equation.pas
program equation(input,output);
const zero=1e-11; {精度}
var a,b,x,fa,fx:real;
m,n,p:integer;
function f(m,n,p,x:real):real;
begin
f:=exp(x*ln(m))+exp(x*ln(n))-exp(x*ln(p));
end;