代码搜索结果

找到约 10,000 项符合 3 的代码

3-3.cfm.htm

理解SQL Server的安全模式

exp3_3.m

clc clear a1=[1 4 4;2 2 1;3 6 2]; b1=[0 1 0;1 0 0;0 0 1]; c1=[0 0 1;0 1 1];d1=[0 1 0;1 0 1]; a2=[1 -1 0;3 -2 1;1 6 -1]; b2=[1 0 0;0 1 0;0 0 1]; c2=[0 1 0;1 0 1];d2=[1 1 0;1 0 1]; % 部分并联后的状态空间,

chap3_3.m

%Fuzzy Immune PID Control clear all; close all; a=newfis('fuzz_ljk'); f1=1.0; a=addvar(a,'input','u',[-f1*1,f1*1]); %Parameter e a=addmf(a,'input',1,'NB','zmf',[-f1*1,f1*1]); a=

ep3_3.dsw

Microsoft Developer Studio Workspace File, Format Version 6.00 # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! ###############################################################################

ep3_3.dsp

# Microsoft Developer Studio Project File - Name="Ep3_3" - Package Owner= # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Con

ep3_3.cpp

/*3.3 设计函数,将小写英文字符变为对应的大写字符。*/ #include using namespace std; char capitalize(char ch){ if(ch>='a'&&ch

c3-3.h

/* c3-3.h 队列的顺序存储结构(可用于循环队列和非循环队列) */ #define MAXQSIZE 5 /* 最大队列长度(对于循环队列,最大队列长度要减1) */ typedef struct { QElemType *base; /* 初始化的动态分配存储空间 */ int front; /* 头指针,若队列不空,指向队列头元素 */ int r