templateDec

PURPOSE ^

sorted fields of decomposition

SYNOPSIS ^

function dec = templateDec()

DESCRIPTION ^

 sorted fields of decomposition

 together with orderfields, this output can also be used in development to
   see if another dec has unwanted extra fields or missing fields.

 THIS IS NO USER FUNCTION

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function dec = templateDec()
0002 % sorted fields of decomposition
0003 %
0004 % together with orderfields, this output can also be used in development to
0005 %   see if another dec has unwanted extra fields or missing fields.
0006 %
0007 % THIS IS NO USER FUNCTION
0008 
0009 % The elk-library: convex geometry applied to crystallization modeling.
0010 %   Copyright (C) 2013 Alexander Reinhold
0011 %
0012 % This program is free software: you can redistribute it and/or modify it
0013 %   under the terms of the GNU General Public License as published by the
0014 %   Free Software Foundation, either version 3 of the License, or (at your
0015 %   option) any later version.
0016 %
0017 % This program is distributed in the hope that it will be useful, but
0018 %   WITHOUT ANY WARRANTY; without even the implied warranty of
0019 %   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0020 %   General Public License for more details.
0021 %
0022 % You should have received a copy of the GNU General Public License along
0023 %   with this program.  If not, see <http://www.gnu.org/licenses/>.
0024 
0025 %% input data
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 %% clasification
0037 dec.isProper = [];
0038 dec.isOrdinary = [];
0039 dec.isComplete = [];
0040 
0041 %% confinement/validity cone
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 %% decomposition
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 %% additional data
0069 dec.validityProjectionPartition = [];
0070 dec.measureData = [];
0071 dec.inputData = [];
0072 dec.cdef = [];
0073 dec.timingData = [];
0074 
0075 end

Generated on Sat 18-Jul-2015 16:45:31 by m2html © 2005