📄 setopts.m
字号:
function Options=setopts(Model);
%Options=setopts(Model);
%
%
% Copyright, 1998 -
% This M-file and the code in it belongs to the holder of the
% copyrights and is made public under the following constraints:
% It must not be changed or modified and code cannot be added.
% The file must be regarded as read-only. Furthermore, the
% code can not be made part of anything but the 'N-way Toolbox'.
% In case of doubt, contact the holder of the copyrights.
%
% Claus A. Andersson
% Chemometrics Group, Food Technology
% Department of Food and Dairy Science
% Royal Veterinary and Agricultutal University
% Rolighedsvej 30, DK-1958 Frederiksberg, Denmark
% E-mail: claus@andersson.dk
assgn=0;
if strcmp(upper(Model),'TUCKER'),
Options=zeros(9,3);
Options(1,1:2)=[1e-7 1e-8];
Options(2,1)=0;
Options(3,1)=1;
Options(4,1)=1;
Options(5,1)=1;
Options(6,1:2)=[1000 50];
Options(7,1:2)=[1 2];
Options(8,1)=0;
Options(9,1:2)=[1 1];
Options(10,1)=160;
save('noptions_t.mat','-v4','Options')
assgn=1;
end;
if strcmp(upper(Model),'PARAFAC'),
Options=zeros(9,3);
Options(1,1:2)=[1e-6 1e-6];
Options(2,1)=0;
Options(3,1)=1;
Options(4,1)=1;
Options(5,1)=5;
Options(6,1:2)=[1000 1000];
Options(7,1:2)=[1 2];
Options(8,1)=0;
Options(9,1:2)=[1 1];
Options(10,1)=60;
save('noptions_pf.mat','-v4','Options')
assgn=1;
end;
if ~assgn,
Options=zeros(9,3);
Options(1,1:2)=[1e-6 1e-6]; %Relative convergence criteria
Options(2,1)=0;
Options(3,1)=1;
Options(4,1)=1;
Options(5,1)=5;
Options(6,1:2)=[1000 1000]; %Max. number of inner and outer iterations.
Options(7,1:2)=[1 2];
Options(8,1)=0;
Options(9,1:2)=[1 1]; %Flags for amount of printout. 0=minimum, 1=medium, 2=full.
Options(10,1)=60; %Parameters for saving temporary results
fprintf('Identifier in ''Model'' not found, ''Options'' will be subdefault.\n')
end;
%---------------------------------------------
% Options definition's
%
% Options=zeros(9,7);
% Options(1,1:2)=[1e-6 1e-6]; %Relative convergence criteria
% Options(2,1)=0; %Initialization
% Options(3,1)=1; %
% Options(4,1)=1;
% Options(5,1)=5;
% Options(6,1:2)=[1000 1000]; %Max. number of inner and outer iterations.
% Options(7,1:2)=[1 2];
% Options(8,1)=0;
% Options(9,1:2)=[1 1]; %Flags for amount of printout. 0=minimum, 1=medium, 2=full.
% Options(10,1)=60; %Parameters for saving temporary results
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -