代码搜索结果
找到约 10,000 项符合
2 的代码
boxingfasheng2_uv2.bak
### uVision2 Project, (C) Keil Software
### Do not modify !
Target (Target 1), 0x0000 // Tools: 'MCS-51'
Group (Source Group 1)
File 1,2, 0x0
File 1,1,
d2membertyp2.bmp
#define d2membertyp2_width 12
#define d2membertyp2_height 12
static char d2membertyp2_bits[] = {
0x02, 0x00, 0x07, 0x00, 0x12, 0x00, 0x12, 0x00, 0xaa, 0x00, 0xaa, 0x00,
0x4a, 0x01, 0x06, 0x01, 0
ad2_uv2.bak
### uVision2 Project, (C) Keil Software
### Do not modify !
Target (Target 1), 0x0000 // Tools: 'MCS-51'
Group (Source Group 1)
File 1,2, 0x0
File 1,1,
func2p2.asv
a=[20,2,3;1,8,1;2,-3,15];
[L,U]=lu(a)
b=eye(3,3)
n=3
X=[0,0,0]'
Y=[0,0,0]'
for i=1:n
Y=inv(L)*b(:,i) %计算结果,运用LU分解结果
X=inv(U)*Y
b(:,i)=X
end
inv(a)
%b =
% 0.0517 -0.01
func2p2.m
%func2p2.m用矩阵分解求解方程组
a=[20,2,3;1,8,1;2,-3,15];
[L,U]=lu(a)
b=eye(3,3)
n=3
X=[0,0,0]'
Y=[0,0,0]'
for i=1:n
Y=inv(L)*b(:,i) %计算结果,运用LU分解结果
X=inv(U)*Y
b(:,i)=X
end
%b =
%
nnd2n2.m
function nnd2n2(cmd,arg1,arg2,arg3)
%NND2N2 Two-input neuron demonstration.
%
% This demonstration requires either the MININNET functions
% on the NND disk or the Neural Network Toolbox.
% Firs
bmp2txt.rc2
//
// BMP2TXT.RC2 - resources Microsoft Visual C++ does not edit directly
//
#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED
///
d2r2.txt
# include
# include
# include
double func(double x)
{
double aa;
aa = x * exp(-x) / ((x - 1) *(x-1) + 1);
return aa;
}
void main()
{
//program d
d2r2.cpp
# include
# include
# include
double func(double x)
{
double aa;
aa = x * exp(-x) / ((x - 1) *(x-1) + 1);
return aa;
}
void main()
{
//program d