代码搜索:测温精度
找到约 2,905 项符合「测温精度」的源代码
代码结果 2,905
www.eeworm.com/read/158957/10708334
m jacobi.m
function[x,many]=jacobi(A,b,x,tol)
% 雅可比迭代法用于计算线性方程组.
% a为待解线形方程组的系数矩阵, b为常数矩阵,
% x为一初始值, tol为计算精度
% 调用格式为:[x,many]=jacobi(A,b,x,tol)
% x,tol 可省略
if nargin
www.eeworm.com/read/275728/10799404
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/273730/10903120
m pid.m
%Single Neural Net PID Controller based on RBF Wavelet Neural Network Identification
%完善网络结构将RBF网络的径向基换成小波函数,调整权值以及公式的变更
%可望在仿真结构中添加非奇异项以验证小波网络的辨识精度和能力
%输入层加权值进行调整,
clear all;close all;
Jp=0.00
www.eeworm.com/read/417000/11007633
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/270433/11038693
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/464287/7166672
m b25.m
%用原图像与压缩后的图像相减
I = imread('cameraman.tif');
I = double(I)/255;
%计算离散变换矩阵,返回结果为双精度型
T = dctmtx(8);
%实现图像的显示块操作
B = blkproc(I,[8 8],'P1*x*P2',T,T');
mask =[1 1 1 1 0 0 0 0
1 1 1 0 0 0
www.eeworm.com/read/451691/7458130
m romberg.m
function t=Romberg(fname,a,b,e)
%Romberg法求函数的积分
%fname是被积函数,a是上限,b是下限,e为精度(默认1e-4)
if nargin
www.eeworm.com/read/447444/7551129
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/439653/7704071
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/438370/7732162
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