Overview
| Comment: | Added "test" parameter to call to qp_mu. (Adrian's QP interior point alg.) |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
a79c5ec4052c6c8f149bfdb5414f7181 |
| User & Date: | gawthrop@users.sourceforge.net on 2002-11-04 23:41:41.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2002-11-06
| ||
| 21:09:45 | New operational amplifier component check-in: e9e613ccf7 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
2002-11-04
| ||
| 23:41:41 | Added "test" parameter to call to qp_mu. (Adrian's QP interior point alg.) check-in: a79c5ec405 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 23:40:04 | Prunes inf and -inf from constraint list. check-in: a1c8d1068c user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/lib/control/PPP/ppp_qp.m
from [7d027370b3]
to [fa82338072].
| 1 2 3 4 5 6 7 8 | - + |
|
| ︙ | |||
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | + + + + - + |
## Copyright (C) 1999 by Peter J. Gawthrop
## $Id$
if nargin<9
mu = 0
endif
if nargin<10
test=0;
endif
## Check the sizes
n_x = length(x);
[n_U,m_U] = size(J_uu);
if n_U != m_U
error("J_uu must be square");
endif
[n,m] = size(J_ux);
if (n != n_U)||(m != n_x)
error("J_ux should be %ix%i not %ix%i",n_U,n_x,n,m);
endif
if length(gamma)>0 # Constraints exist: do the QP algorithm
## QP solution for weights U
|
| ︙ |
Modified mttroot/mtt/lib/control/PPP/ppp_qp_sim.m
from [986b2d0d8d]
to [9da3cf8d4e].
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | - + - + - + + + + + - + | function [T,y,u,X,Iterations] = ppp_qp_sim (A,B,C,D,A_u,A_w,t,Q,\ Tau_u,Min_u,Max_u,Order_u, \ Tau_y,Min_y,Max_y,Order_y, \ |
| ︙ | |||
109 110 111 112 113 114 115 | 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | - + |
Gamma = [Gamma_u; Gamma_y];
gamma = [gamma_u; gamma_y];
## Current Setpoint value
w = W(:,floor(t/dt)+1);
## Compute U(t) via QP optimisation
|
| ︙ |