(基于MIT-LEACH 改的,数据包每隔10s发送一次,一轮分为两个frame.程序运行只需代替原LEACH的leach.tcl即可.leach.tcl路径为ns-2.34\mit\uAMPS)
2022-05-07 16:12:51 47KB NS2下HEED
1
华为TCL教程,是华为的一个关于TCL语言的全面教程~~~~
2022-05-06 21:28:07 550KB TCL 华为
1
ns2-iOLSR 论文“iOLSR : OLSR for WSNs Using dynamics Adaptive Intervals”中使用的NS-2仿真代码 目录 ns2-code 下的代码应主要用“erl”标记,其中已对原始代码进行了更改。 在这个存储库中所有源自我的代码都应该被视为 GPLv2 。
2022-05-04 09:44:51 261KB Tcl
1
目录 关于本教程 4 谁应该学习本教程? 4 Tcl/Tk 基础知识 4 Tcl/Tk 的起源 4 工具和文件 5 Tcl 语言 6 Tcl tick 的构成 6 Tcl 元字符 7 Tcl 全局变量和反斜杠替代 9 Tcl 运算符和数学函数 12 Tcl 中的循环和分支 14 Tcl 字符串和模式匹配 16 Tcl 列表 18 Tcl 数组 20 更多 Tcl 数组 22 Tcl 过程 23 变量作用域规则 25 Tcl 中的数据结构 25 路径和文件 27 Tcl 进程和文件 I/O 29 将 eval 用于动态脚本 32 Tk 命令 34 小部件 34 Hello, World! Tk 样式 34 Tk 演示 36 Tk 小部件的分类取样器 36 Tk 命令,第一部分 38 Tk 命令,第二部分 39 真的(小)Tk 应用程序 39 样本 Tk 应用程序 41 样本 Tk 应用程序对话框 41 开始认识 Expect 43 Expect 是什么? 43 使用 Expect 的 RFC 检索 44 Expect 的关键,第 1 部分 46 Expect 的关键,第 2 部分 47 使用 Expect 可以完成哪些任务? 49 Tcl/Tk 扩展 50 Tcl/Tk 扩展介绍 50 [incr Tcl]、[incr Tk] 和更多... 50 BLT 和 Tix 51 TclX 52 访问扩展商场 52 参考资料与反馈 54 收集的参考资料 54 正式的 Tcl/Tk 徽标 54
2022-05-02 16:55:07 781KB tcl快速入门.pdf
1
VIVADO经常使用TCL脚本对FPGA进行调试,通过JTAG转AXI对内部模块进行控制,但是TCL语言书籍比较少,这边是一个英文的TCL语言学习书籍. Preface 1 Chapter 1: The Tcl Shell 5 Introduction 5 The Tcl shell 6 Writing to the Tcl console 7 Mathematical expressions 8 Tcl expr operands 8 Mathematical functions 11 Computing mathematical expressions 12 Referencing files in Tcl 13 Variables 15 Command line arguments 17 Chapter 2: Using the Building Blocks Control Constructs 21 Introduction 21 Controlling flow with the if statement 23 Looping with for 24 Looping with foreach 25 Looping with while 26 Continuing a procedure 27 Breaking out of a procedure 28 Nested looping 29 Chapter 3: Error Handling 31 Introduction 31 Using the catch command 32 Using the eval command 34 Using the error command 35 Error handling procedure 36 Chapter 4: Handling String Expressions 39 Introduction 40 Appending to a string 41 Formatting a string 42 Matching a regular expression within a string 44 Performing character substitution on a string 46 Parsing a string using conversion specifiers 47 Determining the length of a string 49 Comparing strings 50 Comparing a string of characters 51 Locating the first instance of a character 52 Locating the index of a character 53 Determining the class of a string 54 Locating the last instance of a string 56 Determining the size of a string 57 Replacing values within a string 57 Locating a pattern within a string 58 Returning a range of characters from a string 59 Creating a string of repeated characters 60 Replacing ranges of characters contained within a string 60 Creating a reverse string 61 Converting a string to lowercase 62 Converting a string to title 62 Converting a string to uppercase 63 Trimming a string 64 Trimming leading whitespace 64 Trimming trailing whitespace 65 Locating the word end 65 Locating the word start 66 Performing variable substitution 67 Chapter 5: Expanding String Functionality Using Lists 69 Introduction 70 Creating a list 70 Joining two lists 71 Joining list elements 72 Appending list elements 73 Assigning list elements to variables 73 Retrieving an element from a list 74 Inserting elements into a list 75 Determining the number of elements 75 Getting a list element 76 Repeating elements 77 Replacing elements 77 Reversing elements 78 Searching a list 79 Editing a list 81 Sorting a list 82 Splitting a string into a list 83 Chapter 6: The Tcl Dictionary 85 Introduction 85 Creating a dictionary 86 Appending to a dictionary 87 Determining if a key exists 88 Filtering a dictionary 88 Searching a dictionary 90 Getting a record 91 Incrementing a value 91 Getting the dictionary structure 92 Getting a list of keys 93 Appending to an existing record 94 Merging two dictionaries 94 Creating a blank dictionary structure 95 Updating variables from a dictionary 96 Determining the size of a dictionary 96 Getting all records 97 Assigning values 97 Chapter 7: File Operations 99 Introduction 99 Opening a file 100 Configuring a file 102 Opening a command pipeline 104 Writing a file 106 Reading a file 106 Closing a file 107 File handling 108 Chapter 8: Tk GUI Programming with Tcl/Tk 111 Introduction 111 Creating a widget 113 Writing to the console 115 Setting the attributes of the window through window manager 116 Creating an additional window 117 Destroying a window 119 Creating a custom dialog 121 Chapter 9: Configuring and Controlling Tk Widgets 123 Introduction 123 Creating a frame widget 124 Creating a label widget 126 Creating an entry widget 128 Creating a button widget 130 Creating a listbox widget 133 Creating an image 139 Creating a simple form 140 Chapter 10: Geometry Management 143 Introduction 143 Controlling layout with the pack command 144 Controlling layout with the grid command 147 Combining pack and grid 151 Creating an address book interface 152 Chapter 11: Using Tcl Built-in Dialog Windows 157 Introduction 157 Displaying a message box 158 Displaying a confirmation dialog 159 Displaying the color picker 161 Displaying the directory dialog 162 Displaying the file selection dialog 164 Selecting a directory and file 166 Chapter 12: Creating and Managing Menus 169 Introduction 169 Creating a menu 170 Adding menu buttons 175 Displaying a pop-up menu 178 Data entry application 180 Chapter 13: Creating the Address Book Application 183 Introduction 183 Creating the Address Book application 184 Adding a record 188 Navigating records 191 Deleting a record 192 Finding a record 195 Full listing 196
2022-05-02 16:50:11 1.73MB TCL TK
1
系统学习TCL脚本入门教程 系统学习TCL脚本入门教程 系统学习TCL脚本入门教程 系统学习TCL脚本入门教程 系统学习TCL脚本入门教程
2022-05-02 16:39:58 679KB TCL
1
tcl/tk是一种易学易用的脚本语言,在ansys,hypermesh大型CAE仿真软件得到应用,是二次开发必修的语言。
2022-05-01 20:14:45 605KB tcl/tk 教程
1
TCL网络设备公司部门岗位职责与业务流程
1. lab1已经配置好,直接执行 dc_shell -f scripts/run_comp.tcl | tee -i syn.log 2. makefile 是用来清理导出的那些文件 3. 把压缩包放到虚拟机再进行解压,如果在Windows下解压可能会有问题!
2022-04-25 13:00:38 73.79MB DC linux tcl
一个TCL脚本可以包含一个或多个命令。命令之间必须用换行符或分号隔开,下面的两个脚本都是合法的: set a 1 set b 2 或 set a 1;set b 2 TCL的每一个命令包含一个或几个单词,第一个单词代表命令名,另外的单词则是这个命令的参数,单词之间必须用空格或TAB键隔开。 TCL解释器对一个命令的求值过程分为两部分:分析和执行。在分析阶段,TCL 解释器运用规则把命令分成一个个独立的单词,同时进行必要的置换(substitution); 在执行阶段,TCL 解释器会把第一个单词当作命令名,并查看这个命令是否有定义,如果有定义就激活这个命令对应的C/C++过程,并把所有的单词作为参数传递给该命令过程,让命令过程进行处理。
2022-04-23 18:54:30 2.59MB ■脚本、命令和单词符号
1