Tech News Today, Marshmallow Custom Rom, Huawei, Run Programs, Network, Chromebook, Bank Account

Minggu, 16 Desember 2012

Tcl and OTcl Tutorial For NS2 - Procedures

Tcl and OTcl Tutorial For NS2 - Procedures - To all visitors of this blog, I say welcome and thank you for visiting the blog Tech News Today Look for all the things you need that are available on this blog. If not available, please leave suggestions and comments for the development of this blog. now we will discuss first about Tcl and OTcl Tutorial For NS2 - Procedures we have collected a lot of information from sources to create this article, so please see.

Articles : Tcl and OTcl Tutorial For NS2 - Procedures
full Link : Tcl and OTcl Tutorial For NS2 - Procedures

You can also see our article on:


Tcl and OTcl Tutorial For NS2 - Procedures


Procedures

Procedures are an essential component of Tcl and can be used to make programming ns simpler. As in any functional programming language, procedures can be used for repetitive tasks, or simply to logically break down the tasks in the program.Procedures are defined in Tcl as follows:
proc proc1 {} {
    puts "in procedure proc1"
}
This defines a procedure that takes no parameters and prints out "in procedure proc1". To call this procedure
proc1
can be used.A procedure with parameters can be defined as follows:
proc proc2 {parameter1} {
    puts "the value of parameter1 is $parameter1"
}
This procedure can be invoked as follows:
proc2 10
A procedure that returns a value can be defined as follows:
proc proc3 {min max} {
    set randomvar [rand $min $max]
    return $randomvar
}
This procedure generates a random variable and returns it to the calling function. This can be invoked as follows
set randomvar [proc3 0 1]
to obtain a uniform random value between 0 and 1.Sometimes it is necessary within a procedure to reference a variable that has global scope. This is the purpose of the global keyword. So, for example, in an ns script, the simulator object typically is called ns, and typically has global scope. So, it could be referenced in a procedure as follows:
proc proc4 {} {
    global ns
    $ns at 10.0 "exit 0"
}
A logical way to break down an ns script can be as follows:
set ns [new Simulator]
create_topology
create_agents
create_sources
create_recorders
$ns run
where create_topologycreate_agentscreate_sources and create_recorders are all procedures.



information Tcl and OTcl Tutorial For NS2 - Procedures has been completed in the discussion.

hopefully the article we give the title Tcl and OTcl Tutorial For NS2 - Procedures can provide knowledge for you in living everyday life in determining the gadget that suits your needs.

you just read the article about Tcl and OTcl Tutorial For NS2 - Procedures if this article is useful for you and want to bookmark it or share it please use the link https://sihanandi.blogspot.com/2012/12/tcl-and-otcl-tutorial-for-ns2-procedures.html thank you and do not forget to comment if anyone.

Tag :
Share on Facebook
Share on Twitter
Share on Google+
Tags :

Related : Tcl and OTcl Tutorial For NS2 - Procedures

0 komentar:

Posting Komentar