QProgmtInCreate#

Purpose#

Creates an instance of a structure of type QProgmtInCreate with the maxit member set to a default value.

Format#

s = QProgmtInCreate()#
Returns:

s (struct) – instance of QProgmtIn struct.

Examples#

// Create and initialize the input structure
struct qprogMTIn qIn;
qIn = QProgmtInCreate();

// Set up the quadratic programming problem
qIn.q = { 2 0, 0 2 };
qIn.r = { 1, 1 };
qIn.start = zeros(2, 1);
qIn.maxit = 500;

Source#

qprogmt.src

See also

Functions QProgmt()