gcsproject.m
来自「细胞生长结构可视化工具箱-MATLAB Toolbox1999.zip」· M 代码 · 共 25 行
M
25 行
% Specify the data type for a complete GCS project
function GcsProject = GcsPRoject
GcsProject.Gcs=InitialGcs; % Actual Gcs network
GcsProject.train =[];
GcsProject.test =[];
GcsProject.NoTrain =0;
GcsProject.NoTest =0;
GcsProject.lamda =[]; % No Samples before a new node is added
GcsProject.NoNewNodes=[]; % No of new nodes to be added - sets trainng length
GcsProject.epochspernode=[];% Used to calculate lamda
GcsProject.IpLabels = []; % Labeles of each ip dimension
GcsProject.ClassLabels = []; % Labels used to identify classes
GcsProject.data1=[]; % In general there will be a dataN for each of the N classes
GcsProject.dataAll=[]; % Concatanation of each equalised data set - use Gcs.train instead
GcsProject.Colour = 1;
GcsProject.NoNewNodes = 5; % No of new nodes to be added - sets trainng length
GcsProject.epochspernode = 5;% Used to calculate lamda
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?