coef2b.m

来自「wang xiao ping 版遗传算法」· M 代码 · 共 16 行

M
16
字号
function [b]=coef2b(coefs,thsize);
%
% [b]=coef2b(coefs,thsize);
%
% Converts a coefficient string into a bias
% vector
%
% b = returned bias vector
% coefs = coefficient string
% thsize = number of neurons in this layer
%

b=coefs(1,1:thsize)';


⌨️ 快捷键说明

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