Changes

Jump to navigation Jump to search

var.makeNumericList

128 bytes added, 13:18, 7 June 2012
no edit summary
Line 22: Line 22:     
== Example  ==
 
== Example  ==
 +
<syntaxhighlight>var.makeNumericList("myList") -- myList will get created as a list variable</syntaxhighlight>
 +
 +
== Good to know ==
 +
This function cannot be used to create a numeric matrix. Routines [[var.recallAt]] and [[var.storeAt]] will work with matrices but only if they are created by some other means ([[var.store]]) :
 +
 
<syntaxhighlight>var.store("mat", {{1,2}, {3,4}}) -- create matrix mat in the symbol table
 
<syntaxhighlight>var.store("mat", {{1,2}, {3,4}}) -- create matrix mat in the symbol table
 
var.storeAt("mat", 13.3, 1, 1) -- puts the number 13.1 into the field 1,1 of the matrix
 
var.storeAt("mat", 13.3, 1, 1) -- puts the number 13.1 into the field 1,1 of the matrix
 
val = var.recallAt("mat", 1, 1) -- grab it back in lua</syntaxhighlight>
 
val = var.recallAt("mat", 1, 1) -- grab it back in lua</syntaxhighlight>
  −
== Good to know ==
  −
This function cannot be used to create a numeric matrix. Routines [[var.recallAt]] and [[var.storeAt]] will work with matrices but only if they are created by some other means.
      
== See also  ==
 
== See also  ==

Navigation menu