Skip to content

remove_arg

Jesse Lingeman edited this page Aug 27, 2013 · 1 revision

Purpose

Removes an argument from the matrix variable

Parameters

Argument Name (String)

The name of the argument to remove from this variable

Example

# Get a variable called trial from the database, store it in a Ruby variable called trial
trial = getVariable("trial")
# Assume that this variable has an argument called "trialnum", remove that.
trial.remove_arg("trialnum")
setVariable(trial)