自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(1)
  • 资源 (2)
  • 收藏
  • 关注

原创 vlfeat--caltech101.m个人注释

function phow_caltech101()% PHOW_CALTECH101 Image classification in the Caltech-101 dataset%   This program demonstrates how to use VLFeat to construct an image%   classifier on the Caltech-101

2015-09-18 17:27:20 1984

数据库设计 超市物流管理

数据库设计报告与ppt 超市物流管理 查询销售记录的存储过程 CREATE PROCEDURE [dbo].search_sell_rec @id varchar(8), @name varchar(30), @time varchar(30), @mid varchar(8) AS IF (@mid = '') BEGIN SELECT P.p_id AS pid, P.p_name AS pname , P.p_scale AS pscale , S.s_qty AS sqty , S.s_price AS sprice , S.s_time AS stime , E.e_name AS ename FROM product P, sell S, employee E WHERE P.p_id like '%'+@id+'%' and P.p_name like '%'+@name+'%'   and S.s_time like '%'+@time+'%' and S.p_id = P.p_id and S.e_id = E.e_id ORDER BY S.s_id desc END IF (@mid<>'') BEGIN SELECT P.p_id AS pid, P.p_name AS pname , P.p_scale AS pscale , S.s_qty AS sqty , S.s_price AS sprice , S.s_time AS stime , E.e_name AS ename , P.p_qty AS pqty FROM product P,   sell S, employee E WHERE P.p_id like '%'+@id+'%' and P.p_name like '%'+@name+'%'   and S.s_time like '%'+@time+'%' and S.m_id =@mid and   S.p_id = P.p_id and S.e_id = E.e_id ORDER BY S.s_id desc END GO

2012-11-06

vc6.0求两数的最大公约数和公倍数

用vc6.0求两数的最大公约数和公倍数 我刚学啊,凑数的

2011-12-10

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除