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

Multi-window

  • A new cable fault location method based on wavelet reconstruction is proposed. In this method the

    A new cable fault location method based on wavelet reconstruction is proposed. In this method the difference between the currents of faulty phase and sound phase under the high voltage pulse excitation is used as the measured signal and is decomposed in multi-scale by wavelet transform, then reconstructed in single scale. Comparing with traditional fault location method by travelling wave, the presented method will not be interfered by the reflected wave from the branch joint of cables or from other positions where the impedances are not matched and not be influenced by fault types, otherwise, the reflected waves can be recognized even the faulty position is near to the measuring terminal, at the same time, the influence of the wave speed uncertainty can be reduced. The correctness of the proposed method is proved by simulation results.

    标签: method reconstruction location proposed

    上传时间: 2016-02-04

    上传用户:maizezhen

  • MPEG-4播发器的实现全部基于windows和MEC编程技术

    MPEG-4播发器的实现全部基于windows和MEC编程技术,它只要安装就可以开始播发,而不需要先装divxcodec再用window的媒体播发器

    标签: windows MPEG MEC 编程技术

    上传时间: 2013-12-13

    上传用户:edisonfather

  • 一个pocketPC 程序

    一个pocketPC 程序,可以为学习手机开发特别是window mobile 开发的人有一定的帮助。

    标签: pocketPC 程序

    上传时间: 2016-02-07

    上传用户:wpwpwlxwlx

  • Socketlib: 一个轻量级的C++ 封装Socket C API 网络编程框架。 它简化了Socket异步事件分派、进程间Socket通信的并发OO网络应用和服务的开发。 目前

    Socketlib: 一个轻量级的C++ 封装Socket C API 网络编程框架。 它简化了Socket异步事件分派、进程间Socket通信的并发OO网络应用和服务的开发。 目前,只支持Window下IPV4;将来支持IPV6,并希望能将其扩展到linux/unix等OS平台。

    标签: Socket Socketlib API 轻量级

    上传时间: 2016-02-11

    上传用户:yuzsu

  • Windows程序设计(第5版)对于Windows程序员来说

    Windows程序设计(第5版)对于Windows程序员来说,“从 Chares 的(Window程序设计)一书中寻找答案。”几乎成了一句至理名言。而(Windows程序设计》第5版是专门为在Microsoft Windows 98、Microsoft Windows NT 4和 Windows NT 5下编程的开发人员编写的。内容博大精深,并有大量的源代码来帮助读者掌握Windows编程。本书覆盖了Windows编程的方方面面,是广大编程人员和学习Windows编程的读者必备的一本好书。

    标签: Windows 程序设计 程序员

    上传时间: 2013-12-05

    上传用户:123啊

  • State_space_reconstruction_parameters_in_the_analysis_of_chaotic_time_series_-_the_role_of_the_time_

    State_space_reconstruction_parameters_in_the_analysis_of_chaotic_time_series_-_the_role_of_the_time_window_length. It is used for reconstruction of state space in chaotic time series, and also how to determine time window.

    标签: State_space_reconstruction_parame ters_in_the_analysis_of_chaotic_t the_role_of_

    上传时间: 2013-12-21

    上传用户:fandeshun

  • 一个拼音输入法

    一个拼音输入法,可以在window系统下使用,很有用的源码哦

    标签: 拼音输入法

    上传时间: 2013-12-15

    上传用户:redmoons

  • 模拟键盘输入

    模拟键盘输入,类似window输入法自带的那个模拟键盘,自己可以用鼠标输入

    标签: 模拟 键盘 输入

    上传时间: 2016-02-25

    上传用户:alan-ee

  • if(e.getActionCommand()=="参数法画圆"){ p=11 } } //actionPerformed //实现接口Window

    if(e.getActionCommand()=="参数法画圆"){ p=11 } } //actionPerformed //实现接口WindowListener的所有方法,用于处理发生在窗口上的事件 public void windowClosing(WindowEvent e)

    标签: getActionCommand actionPerformed Window if

    上传时间: 2016-02-27

    上传用户:busterman

  • 压缩解压算法LZ77算法有许多派生算法(这里面包括 LZSS算法)。它们的算法原理上基本都相同

    压缩解压算法LZ77算法有许多派生算法(这里面包括 LZSS算法)。它们的算法原理上基本都相同,无论是哪种派生算法,LZ77算法总会包含一个动态窗口(Sliding Window)和一个预读缓冲器(Read Ahead Buffer)。动态窗口是个历史缓冲器,它被用来存放输入流的前n个字节的有关信息。一个动态窗口的数据范围可以从 0K 到 64K,而LZSS算法使用了一个4K的动态窗口。预读缓冲器是与动态窗口相对应的,它被用来存放输入流的前n个字节,预读缓冲器的大小通常在0 – 258 之间。这个算法就是基于这些建立的。用下n个字节填充预读缓存器(这里的n是预读缓存器的大小)。在动态窗口中寻找与预读缓冲器中的最匹配的数据,如果匹配的数据长度大于最小匹配长度 (通常取决于编码器,以及动态窗口的大小,比如一个4K的动态窗口,它的最小匹配长度就是2),那么就输出一对〈长度(length),距离(distance)〉数组。长度(length)是匹配的数据长度,而距离(distance)说明了在输入流中向后多少字节这个匹配数据可以被找到。

    标签: 算法 LZSS LZ 77

    上传时间: 2014-01-22

    上传用户:tzl1975