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