ernn.m
来自「Program for training and testing the Elm」· M 代码 · 共 17 行
M
17 行
% The 3-Input ERNN Model Matlab Files
% Computer Program for training and testing the Elman Recurrent Neural
% Network model when used to predict the top-oil temperature of the 8
% MVA transformer.
% See Table 5.16 of the Thesis.
%
clear all
close all
% Load data sets
load input_train.dat;
load input_test.dat;
load output_train_top.dat;
load output_test_top.dat;
% Let x1 and y1 be the input and output for training data set
% respectively.
% Let x2 and y2 be the input and output for test data set respectively.
x1=input_train.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?