display.m

来自「RBF网络逼近、RBF-建模、RBF网络训练与测试程序」· M 代码 · 共 36 行

M
36
字号
function display(net)
%DISPLAY Display the name and properties of a neural network variable.
%
%  Syntax
%
%    display(net)
%
%  Description
%
%    DISPLAY(NET) displays a network variable's name and properties.
%
%  Examples
%
%    Here a perceptron variable is defined and displayed.
%
%      net = newp([-1 1; 0 2],3);
%      display(net)
%
%    DISPLAY is automatically called as follows:
%
%      net
%
%  See also DISP, SIM, INIT, TRAIN, ADAPT

%  Mark Beale, 11-31-97
%  Copyright 1992-2002 The MathWorks, Inc.
% $Revision: 1.7 $

isLoose = strcmp(get(0,'FormatSpacing'),'loose');

if (isLoose), fprintf('\n'), end

fprintf('%s =\n',inputname(1));

disp(net)

⌨️ 快捷键说明

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