虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

LEFT-right

  • 西门子语句表(STL)编程参考手册

    西门子语句表(STL)编程参考手册,了解西门子STL语言的最基本的知识

    标签: STL 西门子 编程 参考手册

    上传时间: 2017-12-07

    上传用户:wangheping1234

  • 浅谈移动互联技术

    网络新技术论文 移动互联网是相对固定互联网而言的,是通过该移动互联网,用户使用无线智能终端(手机、pda、平板电脑、车载gps等)可以在移动状态下使用互联网的网络资源。这种移动产品的互联网化和互联网络产品的移动化正在深刻地影响着大众生活。

    标签: 移动 互联技术

    上传时间: 2017-12-19

    上传用户:美丽一瞬间

  • C++实验报告:对于类的设计

    C++:熟悉、掌握类的设计与实现,包含一份实验报告及其相关代码文件,有需要的可以互相学习下。

    标签: 实验报告及源码文件

    上传时间: 2017-12-20

    上传用户:2428357

  • 学生信息管理系统

    学生信息管理系统 管理系统中有五个要求:输入   查找   修改   插入   删除    存储 (1)       输入要求:能够通过键盘输入和文件输入两种 (2)       查找要求:能够根据学生号查找单个学生的信息,也可以遍历所有学生信息 (3)       修改要求:能够根据学生号修改单个学生所有信息 (4)       插入要求:能够实现头插和尾插 (5)       删除要求:能够根据学生号删除单个学生信息 (6)       存储要求:通过链表存储所有信息

    标签: 信息管理系统

    上传时间: 2017-12-25

    上传用户:phc62

  • 第三方环境检测机构入围项目技术标-大纲目录

    第三方环境检测机构入围项目技术标-大纲目录, (1)公司简介…………………………………………………………………页码 (2)项目认知…………………………………………………………………页码 (3)投标人针对本项目的监测规范…………………………………………页码 (4)综合分析和监测建议……………………………………………………页码 (5)技术人员名单……………………………………………………………页码 (6)监测大纲和机构组织计划………………………………………………页码 (7)优惠条件及特殊承诺……………………………………………………页码 (8)关于对招标文件中有关条款的拒绝声明………………………………页码 (9)其他技术文件或说明……………………………………………………页码

    标签: 环境检测 机构 项目 目录

    上传时间: 2018-01-05

    上传用户:shan323

  • C # ChatBot 基于AIML

    C # ChatBot 基于AIML C # ChatBot 基于AIML

    标签: ChatBot AIML

    上传时间: 2018-01-20

    上传用户:hcedison

  • Fire and fury

    Fire and Fury。 This article is about the 2018 book. For other uses, see Fire and Fury (disambiguation). The title refers to a quote by Trump about the conflict with North Korea. The book became a New York Times number one bestseller.Fire and Fury: Inside the Trump White House is a 2018 book by Michael Wolff which details the behavior of U.S. President Donald Trump and the staff of his 2016 presidential campaign and White House. The book highlights descriptions of Trump's behavior, chaotic interactions among senior White House staff, and derogatory comments about the Trump family by former White House Chief StrategistSteve Bannon. Trump is depicted as being held in low regard by his White House staff, leading Wolff to state that "100% of the people around him" believe Trump is unfit for office.[1] Reviewers generally accepted Wolff's portrait of a dysfunctional Trump administration, but were skeptical of many of the book's most controversial claims.

    标签: Fire fury and

    上传时间: 2018-02-26

    上传用户:Yoobaobao

  • Fire and fury

    This article is about the 2018 book. For other uses, see Fire and Fury (disambiguation). The title refers to a quote by Trump abot the conflict with North Korea. The book became a New York Times number one bestseller.Fire and Fury: Inside the Trump White House is a 2018 book by Michael Wolff which details the behavior of U.S. President Donald Trump and the staff of his 2016 presidential campaign and White House. The book highlights descriptions of Trump's behavior, chaotic interactions among senior White House staff, and derogatory comments about the Trump family by former White House Chief StrategistSteve Bannon. Trump is depicted as being held in low regard by his White House staff, leading Wolff to state that "100% of the people around him" believe Trump is unfit for office.[1] Reviewers generally accepted Wolff's portrait of a dysfunctional Trump administration, but were skeptical of many of the book's most controversial claims.

    标签: Fire fury and

    上传时间: 2018-02-26

    上传用户:Yoobaobao

  • 基于MATLAB的JPEG图像压缩编码

    简单的实现JPEG图像压缩编码方法一 clear all; RGB=imread('C:\Users\Administrator\Desktop\123.bmp');%读取内存中bmp格式的彩色图像 I=rgb2gray(RGB);%将彩色图像转换为灰度图像 I1=im2double(I);%将图像变换为双精度格式 T=dctmtx(8);%处理后返回一个8*8阶的DCT矩阵 B1=blkproc(I1,[8 8],'P1*x*P2',T,T');%对图像的每个8*8子块应用矩阵式‘P1*x*P2(像素块的处理函数,x是形式参数)进行处理,P1=T,P2=T’ mask=[1 1 1 1 0 0 0 0          1 1 1 0 0 0 0 0          1 1 0 0 0 0 0 0          1 0 0 0 0 0 0 0          0 0 0 0 0 0 0 0          0 0 0 0 0 0 0 0          0 0 0 0 0 0 0 0          0 0 0 0 0 0 0 0 ];%选取10个DCT系数重构图像(DCT具有能量集中的性质,数据集中在左上角,故进行图像压缩时离散余弦变换矩阵可以舍弃右下角的高频数据) B2=blkproc(B1,[8 8],'P1.*x',mask);%舍弃每个块中的高频系数,达到压缩的目的 I2=blkproc(B2,[8 8],'P1*x*P2',T',T);%余弦反变换,重构图像 subplot(2,2,1);imshow(RGB);%原彩色图像 subplot(2,2,2);imshow(I);%灰度图像 subplot(2,2,3);imshow(I1);%双精度灰度图像 subplot(2,2,4);imshow(I2);%重构图像

    标签: matlab

    上传时间: 2018-03-15

    上传用户:wlmelody

  • 基于FPGA 的数字滤波器设计

    基于FPGA 的数字滤波器设计源代基于FPGA 的数字滤波器设计源代码基于FPGA 的数字滤波器设计源代码

    标签: FPGA 数字 滤波器设计

    上传时间: 2018-03-29

    上传用户:18355095071