matlab.buildtool.Plan Class
R2026bNamespace: matlab.buildtool
Description
The matlab.buildtool.Plan class is the fundamental interface used to
collect a set of tasks and define a build.
A Plan object behaves like a dictionary, where keys are names and values
are PlanElement objects.
For example, to add a task to the plan, modify a task in the plan, or return a copy of a
specific task in the plan, index into the Plan object by using the task name:
plan("adds the tasktaskName") = ttto the plan.plan("modifies a property of the specified task.taskName").TaskProp= valuet = plan("returns a copy of the specified task.taskName")
Creation
To create a Plan object, use the buildplan
function.