crtbase.m

来自「matlab遗传算法工具箱」· M 代码 · 共 47 行

M
47
字号
% CRTBASE.m - Create base vector %% This function creates a vector containing the base of the loci% in a chromosome.%% Syntax: BaseVec = crtbase(Lind, Base)%% Input Parameters:%%		Lind	- A scalar or vector containing the lengths%			  of the alleles.  Sum(Lind) is the length of%			  the corresponding chromosome.%%		Base	- A scalar or vector containing the base of%			  the loci contained in the Alleles.%% Output Parameters:%%		BaseVec	- A vector whose elements correspond to the base%			  of the loci of the associated chromosome structure.% Author: Andrew Chipperfield% Date: 19-Jan-94function BaseVec = crtbase(Lind, Base)[ml LenL] = size(Lind) ;if nargin < 2 	Base = 2 * ones(LenL,1) ; % default to base 2end[mb LenB] = size(Base) ;% check parameter consistencyif ml > 1 | mb > 1	error( 'Lind or Base is not a vector') ;elseif (LenL > 1 & LenB > 1 & LenL ~= LenB) | (LenL == 1 & LenB > 1 ) 	error( 'Vector dimensions must agree' ) ;elseif LenB == 1 & LenL > 1	Base = Base * ones(LenL,1) ;	endBaseVec = [] ;for i = 1:LenL	BaseVec = [BaseVec, Base(i)*ones(Lind(i),1)'];end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?