Welcome![Sign In][Sign Up]
Location:
Search - report label

Search list

[Static controlalarmstaticclass

Description: 报警控制在各种工业控制系统中是经常见到的,一般用于报警的方法有很多,有用文本标示,有用图形表示的,其原理不外乎构造CDC类对象然后利用提供的各种基本图元属性进行图形绘制就可以了.这里我们来制作一个能够显示报警文本,当出现某个报警的时候我们然背景进行闪烁就可以实现功能了.-alarm control in a variety of industrial control system is often seen, the general method for alarm are many, useful text label, useful graphics said, its principle either tectonic CDC class object and then using the basic attributes yuan map graphic on it. here we are to produce a report to show text, when there is a report to the police when we ran background flicker on the function can be achieved.
Platform: | Size: 36463 | Author: 陈其义 | Hits:

[Delphi/CppBuilderDelphi_程序设计基础教程

Description: 目 录 第 1 章 Delphi 集成开发环境 ..................... 1 2.2.4 指针类型................................... 30 2.2.5 过程与函数类型....................... 31 1.1 Delphi 主窗口 ........................................ 2 1.1.1 标题栏 ........................................ 2 1.1.2 菜单栏 ........................................ 2 1.1.3 工具栏 ........................................ 3 1.1.4 组件板 ........................................ 3 1.2 Delphi 窗体窗口..................................... 3 1.2.1 窗体窗口 .................................... 3 1.2.2 窗体文件 .................................... 4 1.3 代码编辑窗口 ........................................ 4 1.4 对象查看器窗口 .................................... 4 1.4.1 对象查看器窗口的组成............. 5 1.4.2 设置属性 .................................... 5 1.4.3 添加事件 .................................... 6 1.5 项目管理器 ............................................ 6 1.5.1 项目组成 .................................... 7 1.5.2 项目管理器 ................................ 9 1.5.3 项目管理 .................................. 10 1.5.4 项目编译和运行....................... 12 1.6 Delphi 程序设计过程........................... 14 1.7 实验 ...................................................... 17 习题 ............................................................... 19 2.2.6 可变类型................................... 31 2.3 常量和变量的定义............................... 32 2.3.1 常量........................................... 32 2.3.2 变量........................................... 32 2.4 运算符和表达式................................... 33 2.4.1 算术运算符............................... 34 2.4.2 逻辑运算符............................... 34 2.4.3 关系运算符............................... 34 2.4.4 位运算符................................... 35 2.4.5 指针运算符............................... 35 2.4.6 集合运算符............................... 35 2.5 语句 ...................................................... 36 2.5.1 简单语句................................... 36 2.5.2 条件语句................................... 36 2.5.3 循环语句................................... 38 2.6 过程与函数........................................... 40 2.6.1 过程和函数的声明................... 40 2.6.2 过程和函数的参数................... 40 2.6.3 过程和函数的调用................... 42 2.7 实验 ...................................................... 43 2.7.1 编写对象 Pascal 应用程序....... 43 第 2 章 Delphi 的编程语言........................ 21 2.7.2 函数和过程的编写和调用 ....... 44 2.1 保留字和标识符 .................................. 21 习题 ............................................................... 46 2.1.1 保留字和标准指令符............... 21 第 3 章 Delphi 窗体与组件........................ 47 2.1.2 标识符 ...................................... 22 2.1.3 注释 .......................................... 22 2.1.4 控制台程序中的屏幕输入 3.1 Delphi 窗体........................................... 47 3.1.1 窗体与窗口............................... 47 和输出 ...................................... 22 3.1.2 窗体属性................................... 47 3.1.3 窗体事件................................... 48 2.2 Object Pascal 的数据类型.................... 23 2.2.1 简单数据类型........................... 24 2.2.2 字符串类型 .............................. 28 2.2.3 结构类型 .................................. 29 3.2 设计窗体 .............................................. 48 3.2.1 新建窗体................................... 48 3.2.2 设置窗体属性........................... 49 3.2.3 添加组件 .................................. 49 3.2.4 编辑组件 .................................. 49 3.2.5 设置组件属性........................... 49 3.2.6 保存文件 .................................. 49 3.3 文本型组件 .......................................... 50 3.3.1 Label 组件 ................................ 50 3.3.2 Static Text 组件 ........................ 51 3.3.3 Tab 组件 ................................... 52 3.4 按钮型组件 .......................................... 52 3.4.1 Button 组件............................... 52 3.4.2 BitBtn 组件............................... 53 3.4.3 RadioButton 组件 ..................... 54 3.4.4 CheckBox 组件......................... 54 3.5 编辑型组件 .......................................... 54 3.5.1 Edit 组件................................... 54 3.5.2 MaskEdit 组件.......................... 56 3.5.3 Memo 组件 ............................... 57 3.5.4 RichEdit 组件 ........................... 58 3.6 列表框型组件 ...................................... 60 3.6.1 ListBox 组件............................. 60 3.6.2 CheckBox 组件......................... 62 3.6.3 ComboBox 组件 ....................... 62 3.7 滑块型组件 .......................................... 63 3.7.1 Scrollbar 组件........................... 63 3.7.2 TrackBar 组件 .......................... 64 3.8 容器型组件 .......................................... 64 3.8.1 GroupBox 组件......................... 64 3.8.2 Panel 组件................................. 65 3.8.3 ScrollBox 组件 ......................... 66 3.9 MDI 程序 ............................................. 66 3.9.1 MDI 窗体及其属性.................. 66 3.9.2 利用模板创建 MDI 应用 程序 .......................................... 67 3.10 实验 .................................................... 68 3.10.1 设计由按钮类组件实现 的功能窗体............................. 68 3.10.2 设计由列表类组件实现的 功能窗体 ................................ 70 3.10.3 按需求将各种组件灵活组合, 实现功能窗体......................... 73 习题 ............................................................... 74 第 4 章 菜单设计............................................ 76 4.1 菜单设计简介....................................... 76 4.1.1 菜单结构................................... 76 4.1.2 菜单命令项的作用................... 76 4.1.3 菜单设计器............................... 77 4.2 主菜单设计........................................... 77 4.2.1 打开主菜单设计器................... 78 4.2.2 添加菜单命令项....................... 78 4.2.3 菜单命令项分组....................... 79 4.2.4 菜单命令项热键....................... 79 4.2.5 调整菜单命令项....................... 79 4.2.6 创建级联菜单........................... 80 4.3 菜单命令响应....................................... 80 4.4 运行时设置菜单................................... 82 4.4.1 菜单命令灰显........................... 83 4.4.2 隐藏菜单命令........................... 83 4.4.3 改变菜单命令文本................... 84 4.4.4 菜单命令单选标记................... 84 4.4.5 菜单命令复选标记................... 84 4.5 创建动态菜单....................................... 85 4.6 图形菜单 .............................................. 88 4.7 快捷菜单设计....................................... 89 4.7.1 快捷菜单的设计....................... 89 4.7.2 快捷菜单的响应....................... 90 4.8 实验 ...................................................... 91 习题 ............................................................... 93 第 5 章 对话框、工具栏和状态栏设计 .... 95 5.1 对话框设计........................................... 95 5.1.1 文件对话框组件....................... 95 5.1.2 字体对话框组件....................... 97 5.1.3 颜色对话框组件....................... 98 5.1.4 打印、打印设置和页面设置 对话框组件............................... 98 5.1.5 查找和替换对话框组件........... 99 5.1.6 消息框和输入框..................... 100 5.1.7 对话框综合应用实例..............102 7.3.1 异常响应与 try…except 5.2 工具栏设计 .........................................107 语句......................................... 155 5.2.1 用面板构成工具栏..................107 7.3.2 异常保护与 try…finally 5.2.2 使用工具栏组件......................112 语句......................................... 157 5.2.3 使用 TCoolBar 组件................113 7.3.3 异常的重引发和处理嵌套 ..... 159 5.2.4 使用 TControlBar 组件 ...........115 7.3.4 定义自己的异常..................... 159 5.3 状态栏设计 .........................................115 7.3.5 利用异常响应编程................. 163 5.4 实验 .....................................................118 7.4 Delphi 调试器..................................... 165 习题 ..............................................................121 7.4.1 准备调试................................. 165 第 6 章 Delphi 多媒体应用.......................123 7.4.2 设置调试器的选项................. 165 7.5 控制程序的运行................................. 166 6.1 绘图组件 .............................................123 7.5.1 单步执行................................. 166 6.1.1 TShape 组件 ............................123 7.5.2 跟踪执行................................. 167 6.1.2 画布对象 .................................124 7.5.3 跳过一段代码......................... 168 6.1.3 TPaintBox 组件 .......................124 7.5.4 全速执行剩余的代码............. 168 6.1.4 TImage 组件 ............................124 7.5.5 返回到执行点......................... 168 6.2 图形列表组件 .....................................130 7.5.6 暂停运行................................. 168 6.2.1 TTreeView 组件 ......................130 7.5.7 重新开始运行......................... 168 6.2.2 TListView 组件 .......................131 7.5.8 命令行参数............................. 169 6.3 图形栅格组件 .....................................132 7.6 断点 .................................................... 169 6.3.1 TStringGrid 组件 .....................133 7.6.1 源代码断点............................. 169 6.3.2 TDrawGrid 组件......................134 7.6.2 机器指令断点......................... 170 6.3.3 TColorGrid 组件......................136 7.6.3 数据断点................................. 171 6.4 图形日历组件 .....................................136 7.6.4 模块断点................................. 171 6.4.1 TDateTimePicker 组件 ............137 7.6.5 指定遇到断点时的行为......... 171 6.4.2 TCalendar 组件........................137 7.6.6 断点列表窗口......................... 172 6.5 多媒体组件 .........................................137 7.6.7 删除断点................................. 173 6.5.1 TMediaPlayer 组件..................137 7.6.8 设置断点的属性..................... 173 6.5.2 多媒体播放器..........................138 7.6.9 禁止和允许断点..................... 173 6.5.3 Flash 播放器............................141 7.7 监视表达式的值................................. 174 6.6 实验 .....................................................144 7.7.1 观察窗口................................. 174 习题 ..............................................................148 7.7.2 计算和修改表达式的值......... 175 第 7 章 Delphi 异常处理与调试..............150 7.1 Delphi 异常处理..................................150 7.1.1 异常处理的意义......................150 7.1.2 错误类型 .................................151 7.2 Delphi 异常类 .....................................153 7.3 Delphi 异常处理机制..........................155 7.7.3 计算提示................................. 176 7.7.4 Inspector 窗口......................... 176 7.7.5 查看局部变量的值................. 177 7.8 实验 .................................................... 177 7.8.1 Delphi 异常处理机制 ............. 177 7.8.2 Delphi 调试............................. 178 习题 ............................................................. 180 第 8 章 数据库编程......................................183 8.1 数据库系统概述 .................................183 8.1.1 数据库管理系统......................183 8.1.2 关系数据库 .............................184 8.1.3 数据库应用程序......................184 8.1.4 Delphi 数据库的体系结构......184 8.2 BDE 组件 ............................................188 8.2.1 TTable 组件介绍 .....................189 8.2.2 TQuery 组件介绍 ....................199 8.3 ADO 组件............................................206 8.3.1 TADOConnection 组件 ...........208 8.3.2 TADOCommand 组件.............210 8.3.3 TADODataSet 组件.................212 8.3.4 TADOTable 组件 ....................213 8.4 数据控制组件简介 .............................214 8.4.1 TDBGrid 组件介绍 .................215 8.4.2 TDBNavigator 组件介绍.........217 8.4.3 TDBText 组件介绍 .................219 8.4.4 TDBEdit 组件介绍..................219 9.1.1 QuickReport 概述 .................. 244 9.1.2 TQuickRep 组件 .................... 245 9.1.3 TQRSubDetail 组件................ 247 9.1.4 TQRBand 组件 ....................... 248 9.1.5 TQRChildBand 组件............... 249 9.1.6 TQRGroup 组件...................... 250 9.1.7 TQRLabel 组件....................... 250 9.1.8 TQRDBText 组件................... 250 9.1.9 TQRExpr 组件........................ 250 9.1.10 TQRsysData 组件 ................. 251 9.1.11 TQRMemo 组件 ................... 252 9.1.12 TQRRichText 组件............... 252 9.1.13 TQRDBRichText 组件.......... 252 9.1.14 TQRShape 组件 .................... 252 9.1.15 TQRImage 组件.................... 252 9.1.16 TQRDBImage 组件 .............. 252 9.1.17 TQRComposite 组件............. 252 9.1.18 TQRPreview 组件................. 253 9.2 QuickReport 报表实例 ....................... 253 8.4.5 TDBMemo 组件介绍 ..............220 9.2.1 打印单数据库报表................. 253 8.4.6 TDBImage 组件介绍...............221 9.2.2 打印标签、信封..................... 256 8.4.7 TDBListBox 组件介绍............221 9.2.3 打印主/明细表........................ 258 8.4.8 TDBComboBox 组件介绍 ......221 9.2.4 打印分组与统计报表............. 260 8.4.9 TDBCheckBox 组件介绍........222 9.3 Rave 报表设计器的组件.................... 262 8.4.10 TDBRadioGroup 组件介绍 ...222 9.3.1 Rave 5 的报表设计界面......... 262 8.4.11 TDBLookupListBox 组件 介绍 .......................................223 8.4.12 TDBLookupComboBox 组件 介绍 .......................................223 9.3.2 Drawing(绘图)组件页 ............ 263 9.3.3 Bar Code(条形码)组件页 ....... 263 9.3.4 Standard(标准)组件页 ............ 263 9.3.5 Report(报表)组件页 ............... 263 8.4.13 TDBCtrlGrid 组件介绍 .........223 9.3.6 其他组件页............................. 264 8.4.14 TDBRichEdit 组件介绍.........224 8.4.15 TDBChart 组件介绍..............224 8.5 实验 .....................................................231 8.5.1 设计数据表结构......................231 8.5.2 设计数据表编辑窗体..............232 8.5.3 设计数据表查询窗体..............238 习题 ..............................................................242 9.4 Delphi 中的 Rave 组件....................... 265 9.4.1 RvProject 组件........................ 265 9.4.2 RvSystem 组件 ....................... 266 9.4.3 其他组件................................. 267 9.5 Rave 报表例程 ................................... 267 9.5.1 设计 Rave 报表....................... 267 9.5.2 调用 Rave 报表....................... 271 第 9 章 报表与图表......................................244 9.6 图表 .................................................... 271 9.1 QuickReport 组件................................244 9.6.1 DBChart 组件 ......................... 271 9.6.2 设计图表 .................................273 11.1.2 现有的组件........................... 309 9.7 实验 .....................................................274 11.1.3 组件模板............................... 310 习题 ..............................................................279 11.1.4 选择祖先类的建议............... 311 第 10 章 面向对象程序设计......................281 11.2 建立组件框架................................... 312 11.3 加入属性........................................... 314 10.1 面向对象程序设计概念....................281 11.3.1 加入简单型的属性............... 314 10.1.1 结构化程序设计方法............281 11.3.2 加入枚举型的属性............... 314 10.1.2 面向对象的设计方法............282 11.3.3 加入集合型的属性............... 315 10.2 类 .......................................................284 11.3.4 加入对象型的属性............... 315 10.2.1 类的定义 ...............................284 11.3.5 加入数组型的属性............... 316 10.2.2 保护方式 ...............................285 11.3.6 公开继承的属性................... 316 10.2.3 类的实例化............................286 11.3.7 给出属性的默认值............... 317 10.2.4 类操作符 ...............................286 11.4 加入方法........................................... 317 10.3 方法 ...................................................287 11.4.1 方法的可见性....................... 317 10.3.1 一般方法 ...............................287 11.4.2 避免内部相关性................... 318 10.3.2 构造方法 ...............................289 11.4.3 给方法命名........................... 318 10.3.3 析构方法 ...............................290 11.4.4 加入静态方法....................... 318 10.3.4 类方法 ...................................290 11.4.5 加入虚拟方法....................... 319 10.3.5 隐含参数 Self ........................291 11.4.6 加入动态方法....................... 319 10.4 继承和多态 .......................................292 11.4.7 加入消息处理方法............... 320 10.4.1 继承 .......................................292 11.5 加入事件........................................... 320 10.4.2 覆盖 .......................................293 11.6 安装组件........................................... 323 10.4.3 抽象类 ...................................294 11.7 实验 .................................................. 324 10.4.4 多态 .......................................295 习题 ............................................................. 327 10.4.5 共同祖先 TObject..................296 10.5 属性 ...................................................297 第 12 章 动态链接库(DLLs)编程............ 329 10.5.1 属性定义 ...............................297 12.1 动态链接库概述............................... 329 10.5.2 属性的访问方法....................298 12.1.1 Windows 系统的动态 10.6 消息 ...................................................299 链接库................................... 329 10.6.1 消息机制 ...............................299 12.1.2 为什么使用 DLL .................. 330 10.6.2 发送消息 ...............................300 12.1.3 DLL 与 EXE 文件之间 10.6.3 处理消息 ...............................301 的区别................................... 331 10.6.4 用户自定义消息....................303 12.1.4 DLL 编写规则 ...................... 331 10.7 实验 ...................................................305 12.2 在 Delphi 中编写 DLLs.................... 331 习题 ..............................................................307 12.2.1 编写一般 DLLs 的步骤........ 332 第 11 章 Delphi 自定义组件的开发.......308 12.2.2 动态链接库中的标准指示 ... 334 12.2.3 库初始化代码的编写........... 335 11.1 选择祖先类 .......................................308 12.2.4 从 DLL 中输出字符串 ......... 337 11.1.1 公共祖先类............................308 12.3 在 Delphi 中 DLLs 的调用............... 340 12.3.1 调用 DLL 方式......................340 12.3.2 静态调用 ...............................340 12.3.3 动态调用 ...............................342 12.4 利用 DLLs 实现窗体重用 ................345 12.4.1 利用 DLLs 实现窗体重用 的一般步骤............................346 12.4.2 使用 DLL 模态窗体..............346 12.4.3 DLL 中的非模态窗体...........346 12.5 DLL 与 Delphi 组件包......................351 12.6 实验 ...................................................352 习题 ..............................................................356 第 13章 多线程.............................................358 13.1 多线程概述 .......................................358 13.1.1 什么是多线程........................358 13.1.2 使用多线程的优缺点............358 13.1.3 编写多线程应用程序步骤....359 13.2 多线程编程 .......................................359 13.2.1 创建线程对象........................359 13.2.2 线程的同步............................361 13.2.3 设置线程的优先级................362 13.2.4 挂起和唤醒............................363 13.2.5 缓存线程对象........................363 13.2.6 线程终止 ...............................365 13.2.7 一个多线程排序程序............370 13.3 实验 ...................................................375 习题 ............................................................. 379 第 14 章 文件操作 ....................................... 381 14.1 文件操作命令................................... 381 14.1.1 文件的类型........................... 381 14.1.2 文件的定义........................... 381 14.1.3 文件管理命令....................... 382 14.1.4 文本文件命令....................... 382 14.1.5 输入输出命令....................... 383 14.2 文本文件........................................... 383 14.2.1 打开文本文件....................... 383 14.2.2 关闭文本文件....................... 384 14.2.3 写入文本文件....................... 384 14.2.4 读取文本文件....................... 385 14.3 非文本文件....................................... 386 14.3.1 类型文件............................... 386 14.3.2 无类型文件........................... 389 14.4 文件系统........................................... 390 14.4.1 文件系统组件....................... 390 14.4.2 文件控制单元....................... 393 14.5 实验 .................................................. 396 14.5.1 文件名操作........................... 396 14.5.2 文件读写操作....................... 399 习题 ............................................................. 401 参考文献................................................... 403
Platform: | Size: 3534536 | Author: chaoyan_ma@126.com | Hits:

[Static controlalarmstaticclass

Description: 报警控制在各种工业控制系统中是经常见到的,一般用于报警的方法有很多,有用文本标示,有用图形表示的,其原理不外乎构造CDC类对象然后利用提供的各种基本图元属性进行图形绘制就可以了.这里我们来制作一个能够显示报警文本,当出现某个报警的时候我们然背景进行闪烁就可以实现功能了.-alarm control in a variety of industrial control system is often seen, the general method for alarm are many, useful text label, useful graphics said, its principle either tectonic CDC class object and then using the basic attributes yuan map graphic on it. here we are to produce a report to show text, when there is a report to the police when we ran background flicker on the function can be achieved.
Platform: | Size: 45056 | Author: 陈其义 | Hits:

[OtherReport

Description: labview 自动生成WORD报表,按源码内容自行编辑文档模版,重点是标签(标签名称可自行修改)-LabVIEW automatically generated WORD statements, according to source their own editorial content of the document template, with a focus on label (label name can modify)
Platform: | Size: 114688 | Author: Roy Yu | Hits:

[Delphi VCLexetiq

Description: Exetiq is a label printer and barcode solution for Delphi programming using Quick Report.
Platform: | Size: 9216 | Author: Antonio | Hits:

[Delphi VCLexqretiq

Description: ExQRetiq v2 is a label printer and barcode solution for Delphi programming using Quick Report.
Platform: | Size: 10240 | Author: Antonio | Hits:

[WEB Code220600134

Description: 1、  能使用Web控件进行简单asp.net程序设计 2、 在界面上放置一个表格,在表格中放置三个Label,两个TextBox,一个按钮。 3、 实现简单计数器功能。在文本框中输入两个操作数,点击“结果”按钮,能显示出结果+报告 -1, be able to use a simple Web controls asp.net program design 2, the interface to place a table in the table, placing three Label, two TextBox, a button. 3, implements a simple counter function. In the text box, enter the two operands, click on " results" button, be able to show the result+ report of
Platform: | Size: 7168 | Author: 郑志敏 | Hits:

[OtherOracleFormsDeveloper10g

Description: A mailing label report is displayed in a format suitable for use as address labels on envelopes. You write custom text and embed database values, or text from files, to create the labels. You can print the labels in one or many columns and at any position.
Platform: | Size: 5022720 | Author: Krishna | Hits:

[Othersofthy858h

Description: 。本系统采用了ACCESS数据库,操作便捷并具有高度延续开发的内容与知识的管理系统,适用于中小企业网站使用。 升级编辑器,兼容更多浏览器 去掉了FLASH单独调用 替换了FLASH显视功能 后台产品增加大图展示功能 增加了GOOGLE MAP生成 增加了来仿统计标签 增加留言本脏话过滤 去掉了原来的主机检测,增加了阿江ASP探针 增加了新闻和产品上一篇下一篇 增加了上传文件管理 解决了本地调试总报非法注入BUG-. The system uses the ACCESS database, easy operation and continued development of high content and knowledge management system for small and medium sites. Update editor, compatible with more browsers removed replace FLASH FLASH separate call back products to increase significantly as the function of a larger display features increase GOOGLE MAP increased to generate additional message label imitation statistical filtering the bad language removed the original host detection, an increase of A River ASP probe increased news and products increased by uploading a file under a local debugging total management solution to report illegal injection BUG
Platform: | Size: 3683328 | Author: 松公子 | Hits:

[SQL ServerSAS

Description: SAS界面的进入和使用;不同数据源数据的读入;PRINT、CONTENTS过程的使用;LIST报告的生成; 掌握TITLE、FOOTNOTE、LABEL的用法。-SAS interface to access and use different data sources of data read PRINT, CONTENTS process used LIST report generation master TITLE, FOOTNOTE, LABEL usage.
Platform: | Size: 1024 | Author: 陈春燕 | Hits:

[JSPel

Description: el标签(Excel报表用的),是所有有关el的标签,总结和全面,在报表中会经常用到。-el tag (Excel reports using) is that all the el label, summary and comprehensive will be frequently used in the report.
Platform: | Size: 220160 | Author: 张静怡 | Hits:

[GUI DevelopDialog_Based

Description: A report with list control . This list control sorted multi data and edit label-A report with list control . This list control sorted multi data and edit label
Platform: | Size: 50176 | Author: Tran Minh Sang | Hits:

[Special Effectsrobust

Description: 鲁棒的阿尔法扩展Pn势场实现,c/c++,很经典,找了很久。-This software library implements the alpha expansion for robust P^N potentials described in P. Kohli, L. Ladicky, and P. Torr. Graph cuts for minimizing robust higher order potentials. Technical report, Oxford Brookes University, UK., 2008. P. Kohli, L. Ladicky, and P. Torr. Robust higher order potentials for enforcing label consistency. In CVPR, 2008.
Platform: | Size: 15360 | Author: 高奎 | Hits:

[matlabasymppdc

Description: 这是第一版的AsymPDC工具包。用来处理PDC,gPDC和iPDC有关内容。运行环境为Matlab,并且要求至少Matlab中预装了3个工具箱:控制系统,信号处理和统计工具箱。-This is the first public release of AsympPDC package. It deals with the asymptotic statistics for PDC, gPDC and iPDC. AsympPDC runs under Matlab and is a practically self-contained except for requires routines from three Matlab toolboxes: Control System, Signal Processing, and Statistical. It is not extensively tested yet. It was partially tested under Windows, Macintosh and Linux environments with Matlab version 7.0 and higher. Please report any incompatibility to ksameshi[at]usp.br or baccala[at]lcs.poli.usp.br. Additionally for cosmetic purposes, the pdc_xplot routine uses several Matlab users contributed codes: subplot2.m (modified old version of supbplot to control spacing between subplots), shadedplot.m (developed by Dave Van Tol), suplabel.m (for label and title plotting in subplot figures, by Ben Barrowes), suptitle.m (contributed by Drea Thomas, for adding title above all subplots), and tilefigs.m (for tiling figures for simultaneous visualization, by Charles Plum)
Platform: | Size: 604160 | Author: 罗巍巍 | Hits:

[matlabkmeans

Description: function [L,C] = kmeans(X,k) KMEANS Cluster multivariate data using the k-means++ algorithm. [L,C] = kmeans(X,k) produces a 1-by-size(X,2) vector L with one class label per column in X and a size(X,1)-by-k matrix C containing the centers corresponding to each class. Version: 07/08/11 Authors: Laurent Sorber (Laurent.Sorber@cs.kuleuven.be) References: [1] J. B. MacQueen, "Some Methods for Classification and Analysis of MultiVariate Observations", in Proc. of the fifth Berkeley Symposium on Mathematical Statistics and Probability, L. M. L. Cam and J. Neyman, eds., vol. 1, UC Press, 1967, pp. 281-297. [2] D. Arthur and S. Vassilvitskii, "k-means++: The Advantages of Careful Seeding", Technical Report 2006-13, Stanford InfoLab, 2006. -function [L,C] = kmeans(X,k) KMEANS Cluster multivariate data using the k-means++ algorithm. [L,C] = kmeans(X,k) produces a 1-by-size(X,2) vector L with one class label per column in X and a size(X,1)-by-k matrix C containing the centers corresponding to each class. Version: 07/08/11 Authors: Laurent Sorber (Laurent.Sorber@cs.kuleuven.be) References: [1] J. B. MacQueen, "Some Methods for Classification and Analysis of MultiVariate Observations", in Proc. of the fifth Berkeley Symposium on Mathematical Statistics and Probability, L. M. L. Cam and J. Neyman, eds., vol. 1, UC Press, 1967, pp. 281-297. [2] D. Arthur and S. Vassilvitskii, "k-means++: The Advantages of Careful Seeding", Technical Report 2006-13, Stanford InfoLab, 2006.
Platform: | Size: 1024 | Author: ehsan | Hits:

[Windows DevelopIssueVision

Description: ThreadHelper.dll: 提供线程相关组件 SplashScreen 闪现的屏幕 SingletonApp 唯一程序,第二个实例不会动作 SafeLabel -- 可在多线程下安全操作的Label BackgroundWorker 后台工作程序 RunWorkerAnsy() 开始后台工作 DoWorkEventHandler 后台执行开始事件 执行异步任务 RunWorkerCompletedEventHandler 后台执行结束事件 ReportProgress() 报告后台进度 ProgressChangedEventHandler 进度改变事件 用于画进度条 CancelAnsync() 取消后台任务 IssueVisionWeb : IssueVisionWebservices.asmx: IVData: 组件. 调用dataadapter实现数据操作,含业务逻辑. SecurityHelper: 封装了安全认证操作 Common: 读取配置 EventLogHelper: 辅助操作EventLog -ThreadHelper.dll: thread related components SplashScreen screen flashed SingletonApp only procedure, the second instance will not action SafeLabel- multi-threaded safe operation of the Label the BackgroundWorker background work program RunWorkerAnsy () to start the background of the background DoWorkEventHandler Start event to perform asynchronous tasks RunWorkerCompletedEventHandler background execution the end event the ReportProgress () report the background the progress ProgressChangedEventHandler progress change event used to draw the progress bar CancelAnsync () to cancel background tasks IssueVisionWeb: IssueVisionWebservices.asmx the: IVData: Component call the dataadapter data manipulation, including business logic SecurityHelper: package of safety certification operating the Common: read the configuration EventLogHelper,:-aided EventLog
Platform: | Size: 2654208 | Author: ccs | Hits:

[WEB CodeFFS-M_MYSQL_php

Description: FFS-M快速文件分享系统,基于MYSQL驱动,所以运行此程序前,请检查您的PHP是否支持MYSQL。 FFS-M V4.4正式版功能 伪静态功能(无需服务器相关组件支持) 老版本浏览器自动提示升级浏览器 智能下载核心(实现下载限速,下载广告,下载分块,负载均衡) 独创标签解析引擎,HTML与PHP完美分离,界面美化更自由! 上传文件搜索功能 文件管理功能 下载保护功能 自定义站点页面功能,可通过所见所得编辑器编辑(后台) 文件管理功能(后台) 站点统计代码投放(后台) 此版本更有功能有: 1,文件举报功能。 2,文件清理功能 3,加入FFS文件搜索,增加收录。 SQLITE版本由于使用率较低,暂不提供更新。-FFS- M fast file sharing system, based on MYSQL drive, so to run this program before, please check your PHP whether to support the MYSQL. FFS- M V4.4 official version of the function Pseudo static function (without server related components support) Old version browsers automatic prompt to upgrade the browser Smart download core (realize download speed limit, download advertising, download block, load balancing) Original label analytical engine, HTML and PHP perfect separation, interface beautification more freedom! Upload file search function File management function Download protection function Custom web page function, can be seen through the editor to edit (background) File management functions (background) Site statistics code on the (background) This version is more functions are: 1, document report function. 2, the file cleaning function 3, join FFS file search, increase included. SQLITE version because of low utilization rate, temporary doe
Platform: | Size: 1166336 | Author: agakoei | Hits:

[CSharpMSChart

Description: C#各种漂亮的图表的实现方法。MSChart控件,给图形统计和报表图形显示提供了很好的解决办法,同时支持Web和WinForm两种方式,包含英文版,中文版。MSChart控件与一个数据网格(DataGrid对象)关联,该数据网格存放了要显示的数据,数据网格也可以包含用于图表中标识系列或类别的标签。图表应用程序设计者在数据网格中插入数据或从报表或矩阵中输入数据。-C# various a beautiful chart realize method. MSChart control to graphical statistics and reports graphical display provides a good solution, to support both the Web and WinForm two ways, including English, Chinese. MSChart control with a data grid (the DataGrid object) associated with the data grid storage data to be displayed, the data grid can also contain the chart identifies Series or category label. The chart application designers to insert the data in the data grid or input data from the report or matrix.
Platform: | Size: 5587968 | Author: Zach Fu | Hits:

[Grid Computingphpdisk_v6.8.0_20130110_gbk

Description: KESIONICMS(后面简称ICMS)智能建站管理系统采用微软.NET2.0平台以及全新的软件开发环境(VS2010,SqlServer2000/2005/2008),采用B/S三层结构开发的内容管理系统。系统采用模块化开发方式,除了自带的文章、图片、下载系统外还可以在文章、图片、下载三个系统模型的基础上自定义出功能模型比如房产系统,酒店系统,图片系统,软件下载等;自定义表单助您轻松打造在线报名,举报投诉等功能。万能的标签管理把系统实用性发挥到极至“没有做不到,只有想不到”。8年开发经验的优秀团队,在掌握了丰富的WEB开发经验和CMS产品开发经验的同时,勇于创新追求完美的设计理念,力争为全球更多网站提供助力,并被更多的政府机构、教育机构、事业单位、商业企业所认可。-Intelligent website management system KESIONICMS (hereafter called ICMS). NET2.0 Microsoft platform, and a new software development environment (VS2010 SqlServer2000/2005/2008), B/S three-tier structure developed content management system. System uses modular development, in addition to its own articles, pictures, download system on the basis of the articles, pictures, download three systems model custom function model such as real estate system, hotel system, image system, software download etc. custom forms to help you easily create online registration, report complaints. Omnipotent label management system practicality play to the extreme " Nothing is impossible, only unexpected. 8 years of development experience, excellent team, rich web experience in the development and CMS experience in product development, innovative pursuit of the perfect design concept, and strive to provide the impetus for more sites in the world, and is more government agencies, educational agencies, ins
Platform: | Size: 1501184 | Author: 孔德彭 | Hits:

[CSharpDOA-material-label-print

Description: 1、针对不同类别的物料进行标签打印(贴在流程卡上) 2、标签上的信息主要有ItemNo、LotNo 3、ItemNo的输入格式有规则限制,规则的配置在XmlItemRule.xml中配置 4、LotNo无条件限制 5、标签中的条码是采用128码,没有采用字体文件,而是根据Value生成128条码图片直接在报表中呈现-1, for different types of materials for label printing (attached to the process card) 2, the information on the label main ItemNo, LotNo 3, ItemNo rules limit the input format, configuration rules in the configuration of 4 XmlItemRule.xml, LotNo unconditional 5, is the use of bar code label 128 yards, did not use the font file, but presented in a report based on Value directly generated 128 yards pictures
Platform: | Size: 5414912 | Author: 叶谙杰 | Hits:
« 12 »

CodeBus www.codebus.net