图像分割学习http://pst.nst.pku.edu.cn/teaching/nuclear_medicine/DIPnotes/chapter7/chapter7.pdf
分类:
其他好文 时间:
2015-05-15 15:12:54
阅读次数:
131
At first, I want to thank Austin that he gave us a different experience. His western humor makes the class activeandhis interesting teaching method ma...
分类:
其他好文 时间:
2015-05-11 23:58:15
阅读次数:
285
需求
什么时候会用到Oracle游标,以及其中的for、loop、if呢?
先看这样一个需求:
有一张学生授课表T_TEACHING,每个学生都有数门课程:
主键ID(自增)
课程号COURSE_ID
学号USER_ID
1
01
201501
2
02
201501
3
03
2...
分类:
数据库 时间:
2015-04-30 20:13:12
阅读次数:
162
To be honest, after I finished the teacher's lecture, I didn't quite understand the two topics (maybe due to the fast speed of teaching or something e...
分类:
其他好文 时间:
2015-04-27 14:46:50
阅读次数:
124
DescriptionDoctor Ghee is teaching Kia how to calculate the sum of two integers. But Kia is so careless and alway forget to carry a number when the su...
分类:
其他好文 时间:
2015-04-19 21:11:16
阅读次数:
163
DescriptionMr. O'Cruel is teaching Math to ninth grade students. Students of course are very lazy, so they do not like to do their homework. On the ot...
分类:
其他好文 时间:
2015-04-02 09:02:14
阅读次数:
176
Course Description Teaching Assistants Peng Qi Course Notes (updated each week)?Detailed Syllabus Class Time and Location Spring quarter (March - June, 2015). Lecture: Monday, Wednesday 11:00-12:...
分类:
其他好文 时间:
2015-03-17 16:07:25
阅读次数:
1021
什么意思? 什么意思?平常都是那么是什么意思?意思是隔3秒钟后刷新.上面没有写网页地址(URL),格式应当是:n -- 隔n秒钟url -- 转此地址例如:3秒钟后刷新--转分手社区的首页.mata是缩写形式.= Multiple Answering Teaching,多路回答教学装置equiv[....
分类:
Web程序 时间:
2015-01-24 14:17:53
阅读次数:
140
//生成数据库teaching脚本
USE master
GO
IF EXISTS(
SELECT name
FROM sys.databases
WHERE name = N'teaching'
)
DROP DATABASE teaching
CREATE DATABASE teaching
ON PRIMARY
( NAME = N'...
分类:
数据库 时间:
2014-12-26 09:44:39
阅读次数:
233
--创建数据库
create database student
on primary(
NAME='teaching',
FILENAME='E:\DATA\teaching.mdf',
SIZE=4MB,
MAXSIZE=30MB,
FILEGROWTH=1MB
)
LOG on(
NAME='E:\\teaching',
FILENAME='E:\\teaching_lo...
分类:
数据库 时间:
2014-12-26 08:27:32
阅读次数:
296