Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. scilab

    how can i write variables with a loop in the file

    thacoda, thanks for your answer. i have tried your codes. it works well. i have also finded a solution during the time. i wrote: for { set i 1} { $i <= $jointnr } { incr i +1 } { puts $fh "[set theta$i] [set s$i] [set a$i] [set alpha$i] [set poor$i]" } it works also. But thanks again...
  2. scilab

    how can i write variables with a loop in the file

    thank you for your reply.i have tried your codes, but it didn't work.Now i try to set the another parameters to "" with: for { set i 1} { $i <= 6 } { incr i +1 } { global theta$i global alpha$i global a$i global s$i global poor$i if { $i > $jointnr}{ set theta$i...
  3. scilab

    how can i write variables with a loop in the file

    hi guys, i'm making a graphic for my Scilabprogramm with TCl/Tk.And i am new in Tcl/TK. i want to write variables that from my graphic into a File.My codes are: proc savefile {}{ global name global jointnr for { set i 1} { $i <= $jointnr } { incr i +1 } { global theta$i...

Part and Inventory Search

Back
Top