0001 function dec = templateDec()
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026 dec.A = [];
0027 dec.mappingReducedToFull = [];
0028 dec.mappingFullToReduced = [];
0029 dec.constraintMatrix = [];
0030 dec.nDim = [];
0031 dec.nH = [];
0032 dec.nC = [];
0033 dec.originalData = [];
0034 dec.properData = [];
0035
0036
0037 dec.isProper = [];
0038 dec.isOrdinary = [];
0039 dec.isComplete = [];
0040
0041
0042 dec.confinementCone = [];
0043 dec.confinementConeHull = [];
0044 dec.confinementConePart = [];
0045 dec.validityCone = [];
0046 dec.validityConePart = [];
0047 dec.confinementMappingData = [];
0048 dec.validityMappingData = [];
0049 dec.facetValidityData = [];
0050 dec.centerRay = [];
0051
0052
0053 dec.unifiedPartition = [];
0054 dec.simplexPartition = [];
0055 dec.se = [];
0056 dec.seScaledToClose = [];
0057 dec.seIncidenceMatrix = [];
0058 dec.simplexToUnifiedVector = [];
0059 dec.simplexIsValidVector = [];
0060 dec.simplexIsConfinedVector = [];
0061 dec.unifiedToSimplexVector = [];
0062 dec.unifiedIsValidVector = [];
0063 dec.unifiedIsConfinedVector = [];
0064 dec.nS = [];
0065 dec.nPU = [];
0066 dec.nPS = [];
0067
0068
0069 dec.validityProjectionPartition = [];
0070 dec.measureData = [];
0071 dec.inputData = [];
0072 dec.cdef = [];
0073 dec.timingData = [];
0074
0075 end