gtrack.var.set {misha} | R Documentation |
Assigns value to a track variable
Description
Assigns value to a track variable.
Usage
gtrack.var.set(track = NULL, var = NULL, value = NULL)
Arguments
track |
track name |
var |
track variable name |
value |
value |
Details
This function creates a track variable and assigns 'value' to it. If the track variable already exists its value is overwritten.
Value
None.
See Also
gtrack.var.get
, gtrack.var.ls
,
gtrack.var.rm
Examples
gdb.init_examples()
gtrack.var.set("sparse_track", "test_var", 1:10)
gtrack.var.get("sparse_track", "test_var")
gtrack.var.rm("sparse_track", "test_var")
[Package misha version 4.3.6 Index]