coef2b.m
来自「ADPTIVE GA是改进遗传算法程序,提供了各种交叉算子,变异算子,具有强大的」· 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 + -
显示快捷键?