看n2实例 #Create a simulator object set ns [new Simulator] #Define different colors for data flows #$ns color 1 Blue #$ns color 2 Red #Open the nam trace file set nf [open out-1.nam w] $ns namtrace-all $nf set f0 [open out0.tr w] set f1 [open out1.tr w] #Define a finish procedure proc finish {} { global ns nf $ns flush-trace #Close the trace file close $nf #Execute nam on the trace file exit 0 } #Create four nodes set n0 [$ns node] set n1 [$ns node] set n2 [$ns node] set n3 [$ns node] #Create links between the nodes $ns duplex-link $n0 $n2 1Mb 10ms
标签: simulator Simulator different Create
上传时间: 2016-07-02
上传用户:wfl_yy
AppWizard has created this ac1080 application for you. This file contains a summary of what you will find in each of the files that make up your ac1080 application. ac1080.dsp This file (the project file) contains information at the project level and is used to build a single project or subproject. Other users can share the project (.dsp) file, but they should export the makefiles locally. ac1080.cpp This is the main application source file.
标签: application AppWizard you contains
上传时间: 2014-01-25
上传用户:我干你啊
mp270app.dsp This file (the project file) contains information at the project level and is used to build a single project or subproject. Other users can share the project (.dsp) file, but they should export the makefiles locally. mp270app.cpp This is the main application source file.
标签: project file information the
上传时间: 2016-07-05
上传用户:hj_18
This file contains a summary of what you will find in each of the files that make up your ac_iocard application. ac_iocard.dsp This file (the project file) contains information at the project level and is used to build a single project or subproject. Other users can share the project (.dsp) file, but they should export the makefiles locally. ac_iocard.cpp This is the main application source file.
标签: ac_iocard contains summary files
上传时间: 2014-10-09
上传用户:zwei41
package query public class LinkQuery { private Node front private Node vear public LinkQuery() { this.front=null this.vear=null } public void add(int i) { Node newNode=new Node(i) if(vear==null && front==null) { vear=newNode front=newNode return } vear.next=newNode vear=newNode } public int remove() { if(this.front==null) { System.out.println("队是空的,无法取") return -1 } int temp=this.front.data this.front=this.front.next if(this.front==null) { this.vear=null }
标签: private public Node LinkQuery
上传时间: 2016-07-08
上传用户:天诚24
An Efficient and Effective Detailed Placement Algorithm Global Swap To identify a pair of cells that can be swapped to reduce wirelength (others are fixed). 2. Vertical Swap Swap a cell with a nearby cell in the segment above or below. 3. Local Re-ordering Re-order consecutive cells locally to reduce wirelength. 4. Single-Segment Clustering Place cells optimally within a segment.
标签: Algorithm Efficient Effective Placement
上传时间: 2013-12-18
上传用户:ukuk
RCPServer.cpp This the main application source file. RCPServer.dsp This file (the project file) contains information at the project level and is used to build a single project or subproject. Other users can share the project (.dsp) file, but they should export the makefiles locally.
标签: RCPServer This file application
上传时间: 2014-01-25
上传用户:qw12
大一时学c语言时做的一个基于turbo-c图形库的学生管理系统(非文本图形方式),应该说当时花了不少心血。功能方面实现:调色(对8个默认的调色板的值进行更改),换肤(改界面颜色),时间,文件加密(用了类似转子加密的方法),快捷键,错误提示,分页等,注释比较详细,供初学c语言的人参考。需要将egavga.obj文件link起来才能脱离turbo-c环境执行,网上能找到相关教程。
上传时间: 2014-01-02
上传用户:330402686
ofdm信道特性 Channel transmission simulator Channel transmission simulator % % inputs: % sig2 - noise variance % Mt - number of Tx antennas % Mr - number of Rx antennas % x - vector of complex input symbols (for MIMO, this is a matrix, where each column % is the value of the antenna outputs at a single time instance) % H - frequency selective channel - represented in block-Toeplitz form for MIMO transmission % N - number of symbols transmitted in OFDM frame % % outputs: % y - vector of channel outputs (matrix for MIMO again, just like x matrix) % create noise vector sequence (each row is a different antenna, each column is a % different time index) note: noise is spatially and temporally white
标签: transmission simulator Channel inputs
上传时间: 2016-07-22
上传用户:kelimu
多目标遗传算法程序 to run Demo files, is to run SGALAB_demo_*.m what s new: 1) Multiple-Objective GAs VEGA NSGA NPGA MOGA 2) More TSP mutation and Crossover methods PMX OX CX EAX Boolmatrix 3) More selection methods Truncation tornament stochastic 4) mutation methods binary single point int/real single point 5) encoding/decoding methods binary integer/real messy gray DNA permuation to fix the plot bugs for 4001 , download this file and replace old files.
标签: Multiple-Objective SGALAB_demo run files
上传时间: 2013-12-21
上传用户:mhp0114