SplineConstraint

Common superclass for local and global spline constraint objects.


Declaration

classdef SplineConstraint < matlab.mixin.Heterogeneous & CAAnnotatedClass

Overview

Use SplineConstraint when you want to pass a mixed array of PointConstraint and GlobalConstraint objects through one API.

constraints = [
    PointConstraint.equal(0, D=1, value=0)
    GlobalConstraint.positive()
];

Topics

  • Specify constraints