代码搜索结果
找到约 10,000 项符合
8 的代码
font8_8.h
/****************************************************************************************
* 文件名:FONT8_8.H
* 功能:8*8 ASCII码字体显示函数。(头文件)
* 作者:黄绍斌
* 日期:2004.02.26
* 备注:使用GUI_SetColor()函数设置前景颜色及背景色。
font8_8.c
/****************************************************************************************
* 文件名:FONT8_8.C
* 功能:8*8 ASCII码字体及显示函数。
* 作者:黄绍斌
* 日期:2004.02.26
* 备注:使用GUI_SetColor()函数设置前景颜色及背景色。
****
font8_8_.c
/****************************************************************************************
* 文件名:FONT8_8.C
* 功能:8*8 ASCII码字体及显示函数。
* 备注:使用GUI_SetColor()函数设置前景颜色及背景色。
*******************************
font8_8_.d
OutPut\font8_8_.o: GUI\font8_8_.c
OutPut\font8_8_.o: GUI\..\APP\CONFIG.H
OutPut\font8_8_.o: GUI\..\APP\Includes.h
OutPut\font8_8_.o: GUI\..\APP\..\uCosii\os_cpu.h
OutPut\font8_8_.o: GUI\..\APP\os_
ch8_8.txt
void heapsort(JD r[],int n)
{ int i;
JD x;
for(i=n/2;i>=1;i--)
sift(r,i,n);
for(i=n;i>=2;i--)
{ x=r[1];
r[1]=r[i];
r[i]=x;
sift(r,1,i-1);
}
}
genfont8_8.h
static const unsigned short charset[][8] = {
{ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000 }, /* ' ' 0 0 */
{ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0
genfont8_8.h
static const unsigned short charset[][8] = {
{ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000 }, /* ' ' 0 0 */
{ 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0
example8_8.m
% 求解最优控制器
a=2;b=1;c=1;d=0;
Q=[1000,0;0,1];R=1;
A=[a,0;-c*a,1];
B=[b;-c*b];
Kx=dlqr(A,B,Q,R)
k1=-Kx(2);k2=Kx(1);
axc=[(a-b*k2),b*k1;(-c*a+c*b*k2),(1-c*b*k1)];
bxc=[0;1];cxc=[1,0];dxc=0;
dstep(