代码搜索结果
找到约 10,000 项符合
5 的代码
ex5-5.hex
:100A010000FE00FD00FB0007000700FB00FD00FEEB
:0C0A1100010A00010B000108640109014A
:03000B000208F5F3
:1008F500C0E0C083C082C0D0C28C758A11758CEEF1
:10090500D28C050AE50A6508703B050BE50BB404B6
:10091500
xt5-5.cpp
#include
using namespace std;
int main()
{ const int n=5;
int a[n],i,temp;
cout
c5-5.cpp
#include
using namespace std;
int main()
{ int i,j,row=0,colum=0,max;
int a[3][4]={{5,12,23,56},{19,28,37,46},{-12,-34,6,8}};
max=a[0][0];
for (i=0;i
l5_5.cpp
#include
#include
void main()
{
int i,j,c[2][3];
int a[2][3]={1,2,3,4,5,6};
int b[2][3]={7,8,9,10,11,12};
for(i=0; i
ex5_5.m
A=[1, 2, 3; 4, 5, 6; 7, 8, 0]; [L1,U1]=lu(A)
L1*U1
[L, U, P] = lu(A)
L*U % does not equals to A
inv(P)*L*U % equals to A
text5-5.htm
Untitled Document
exa5_5.m
%-----------------------------------------------------------------------------
% exa060205_blackman.m , for example 6.2.5
% draw blackman window time and frequency amplitude
%----------------------