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

clean

  • bject Inspector is a component suite that contains inspectors allowing you to change anything in y

    bject Inspector is a component suite that contains inspectors allowing you to change anything in your application at runtime. Object Inspector suite includes: TPropertyInterface component for easy access to any property or event of any component at runtime TComponentInspector customizable full-functional runtime object inspector control TComponentComboBox control for easy selecting component TCommonInspector abstract inspector control for inspect anything in your application TDBInspector ready-to-use database inspector control TIniInspector ready-to-use ini-file inspector control TApplicationInspector ready-to-use inspector control for changing Application properties at runtime TSystemColorsInspector ready-to-use inspector control for changing Windows colors Examples small and clean projects illustrating features of inspectors and TPropertyInterface components Source codes full source code of all components and useful internal classes

    标签: inspectors Inspector component allowing

    上传时间: 2015-10-02

    上传用户:无聊来刷下

  • OpenSS7 This the fourth public release of the OpenSS7 Master Package. See README in the release for

    OpenSS7 This the fourth public release of the OpenSS7 Master Package. See README in the release for a sub-package listing. Most of the sub-packages in the release are production grade for Linux Fast-STREAMS. All existing validation test suites run clean on supported distributions and architectures. It is unlikely that the OpenSS7 Master Package will be released as frequently as before. Sub-packages will be released more often. To rebuild the master package with a new sub-package release, simply replace the directory to which the sub-package belongs with the unpacked sub-package release and then rebuild the master package. This release provides support for recent distributions and tool chains.

    标签: OpenSS7 release the Package

    上传时间: 2015-10-28

    上传用户:cc1

  • 这是LInux下C语言开发的推箱子游戏。对学习curese编程的人有帮助 用了大量的Curese函数

    这是LInux下C语言开发的推箱子游戏。对学习curese编程的人有帮助 用了大量的Curese函数,此游戏可建立关卡。默认有10关。 作者 /* File: tuixiangzi.c */ Makefile如下: all: tuixiangzi tuixiangzi: tuixiangzi.c gcc -o tuixiangzi tuixiangzi.c -lcurses clean: rm -f tuixiangzi *.bak

    标签: Curese curese LInux C语言

    上传时间: 2013-12-21

    上传用户:bakdesec

  • Lua 是一个扩展式程序设计语言

    Lua 是一个扩展式程序设计语言,它被设计成支持通用的过程式编程,并有相关数据描述的设施。 Lua 也能对面向对象编程,函数式编程,数据驱动式编程提供很好的支持。它可以作为一个强大、轻量的脚本语言,供任何需要的程序使用。 Lua 以一个用 clean C 写成的库形式提供。(所谓 clean C ,指的 ANSI C 和 C++ 中共通的一个子集)

    标签: Lua 扩展式 程序设计语言

    上传时间: 2015-12-15

    上传用户:huql11633

  • This string-include defines all string functions as inline functions. Use gcc. It also assumes ds=es

    This string-include defines all string functions as inline functions. Use gcc. It also assumes ds=es=data space, this should be normal. Most of the string-functions are rather heavily hand-optimized, see especially strtok,strstr,str[c]spn. They should work, but are not very easy to understand. Everything is done entirely within the register set, making the functions fast and clean.

    标签: functions string-include defines assumes

    上传时间: 2014-01-09

    上传用户:tedo811

  • EKF-SLAM Simulator This version of the simulator uses global variables for all large objects, suc

    EKF-SLAM Simulator This version of the simulator uses global variables for all large objects, such as the state covariance matrix. While bad programming practice, it is a necessary evil for MatLab efficiency, as MatLab has no facility to avoid gratuitous memory allocation and copying when passing (and modifying) variables between functions. With this concession, effort has been made to keep the code as clean and modular as possible.

    标签: Simulator simulator variables EKF-SLAM

    上传时间: 2016-05-02

    上传用户:lunshaomo

  •  给定能够合法编译的Java文件

     给定能够合法编译的Java文件,将其中的单行注释去除后,将文件内容保存到磁盘上的同一目录中,原文件名加上".clean"作为新文件名。  假设Java源代码中不包含\uXXXX形式的Unicode码,给定的Java源文件中不包含任何字符串,文件中只包含单行注释

    标签: 61550 Java 编译

    上传时间: 2013-11-25

    上传用户:hgy9473

  • The advantages of automation can be exploited in order to solve or to minimize the needs of manual

    The advantages of automation can be exploited in order to solve or to minimize the needs of manual approach. In order to support the development of survey accurate cadastral system, an automatic programming approach will be adopted. Database selection system will conduct several outliers integrity checking, rebuild cadastral spatial topology (cadastral lot) and make selfcorrection procedures based on cadastral survey concepts and mathematical model respective to the cadastral lots selected. This is to ensure that all cadastral lots are kept in a closed polygon and provide accurate and "clean" cadastral information.. This system was developed in windows environment.

    标签: advantages automation exploited minimize

    上传时间: 2017-04-29

    上传用户:520

  • CC = gcc clist: clist.c $(CC) `gtk-config --cflags` clist.c -o clist `gtk-config --libs` c

    CC = gcc clist: clist.c $(CC) `gtk-config --cflags` clist.c -o clist `gtk-config --libs` clean: rm -f *.o clist *.bak

    标签: clist gtk-config cflags CC

    上传时间: 2017-06-12

    上传用户:开怀常笑

  • Two scripts are included here. 1. convsys.m - combines the state space representation of two syst

    Two scripts are included here. 1. convsys.m - combines the state space representation of two systems connected in series. [Ao,Bo,Co,Do]=convsys(A1,B1,C1,D1,A2,B2,C2,D2) This algorithm gives the convolution of two state space representations | A1 B1 | | A2 B2 | u ==> | | ==> | | ==> y | C1 D1 | | C2 D2 | The algorithm also accepts state space objects as inputs and gives out a state space object as output. 2. sysfeedbk.m [Ao,Bo,Co,Do]=convsys(A1,B1,C1,D1,A2,B2,C2,D2) Gives the closed loop state space representation for two systems connected with negative feedback in the following manner. | A1 B1 | u ==> | | ==> y + o | C1 D1 | | - | | | | A2 B2 | | |= | |= | | C2 D2 | The zip file also contains checkcompatibility.m , which checks the compatibility of matrix dimensions in the system and cleanss.m which can be used to clean a state space representation.

    标签: representation included combines scripts

    上传时间: 2017-07-25

    上传用户:semi1981