plot_outputweights.m
来自「回声状态神经网络(ESN)是一种性能优异的递归神经网络」· M 代码 · 共 25 行
M
25 行
function plot_outputWeights(outweights, figNr)% plot the output weights (of a trained ESN). For each output channel, a% new color is used.%% input arguments:% outweights: a weight matrix of size nOutputUnits x (nInputUnits +% nInternalUnits)% % figNr: either [] or an integer. If [], a new figure is created, otherwise% the plot is displayed in a figure window with number figNr%% Created June 6, 2006, H. Jaegerif isempty(figNr) nFigure = figure ;else nFigure = figNr;endfigure(figNr); clf;plot(outweights');title('output weights');
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?