-
数据库
AllCourse:
create
proc AllCourse
as
begin
select x.CourseID,x.CourseName,x.Point
,y.TeacherName,y.Post,z.Location,x.StuNumber
from Course x,TeacherTable1 y,TeachTable z
where
x.CourseID=z.CourseID and y.TeacherID=z.TeacherID
end
DeleteLogon :
create
proc DeleteLogon(@id char(10))
as
begin
dele
- 2022-04-09 20:04:58下载
- 积分:1
-
PSNRSSIM_matlab
matlab计算两幅图片之间的psnr和ssim值,彩色图片,算法是转换为YUV计算的,YCbCr(matlab computing psnr and ssim value between two pictures, color pictures, the algorithm is converted to YUV calculation, YCbCr)
- 2015-08-28 22:21:18下载
- 积分:1
-
.NET 工作流设计
.net开发工作流的设计模板,能够详细的介绍.net工作流开发逻辑与模式,方面用户扩展。
- 2022-03-12 18:39:09下载
- 积分:1
-
Inverse
使用C编写的复数矩阵求逆,使用高斯消去法,已经和matlab结果做过对比,无误(Written in C and the complex matrix inverse, using the Gaussian elimination method, has been done and matlab results contrast, correct)
- 2012-07-11 18:23:24下载
- 积分:1
-
tuxingxue
画矩形的代码,包含各种算法,具体的自己看吧,这是图形处理的作业之一(Draw a rectangle of the code, contains a variety of algorithms, specifically for yourself, this is one of the graphics processing jobs)
- 2013-09-26 14:42:11下载
- 积分:1
-
EFM32demo
efm32的工程,是用iar创建的 编译通过ok(efm32 Demo)
- 2013-05-09 14:54:51下载
- 积分:1
-
Lex
词法分析器设计说明
一、 软件名称
LEX词法分析器
二、 软件运行环境
此软件用C#编写,需运行在Windows xp以上操作系统下,.net Framework 2.0以上版本才能正常运行。
()
- 2008-05-01 19:12:32下载
- 积分:1
-
uCos
简单的stm32 ucos工程,含程序及移植步奏,IDE为keil,适用于入门者(simple ucos project for stm32)
- 2014-01-11 15:51:34下载
- 积分:1
-
状态机
/*
*状态机实现由switch和函数指针两种方式:
在实现有限状态机时,使用switch语句是最简单也是最直接的一种方式,其基本思路是为状态机中的每一种状态都设置一个case分支
一个函数指针数组可以像下面这样声明:
void (*state[MAX_STATES]) ();
如果知道了函数名,就可以像下面这样对数组进行初始化。
extern int a(),b(),c(),d();
int (*state[]) ()={a,b,c,c};
可以通过数组中的指针来调用函数:
(*state[i]) ();
* */
- 2022-02-05 14:21:47下载
- 积分:1
-
uCOS-EB55
μC/OS-II在AT91M55800A上的移植代码,包括标准C和ARM汇编语言,集成开发环境ADS,仿真器FFT-ICE,评估板为ATMEL公司的EB55.( C/OS-II in the transplant AT91M55800A code, including the standard C and the ARM assembly language, integrated development environment ADS, simulator FFT- ICE, the board of the company ATMEL EB55.)
- 2005-01-08 11:30:14下载
- 积分:1