📄 plot_outputweights.m
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -