📄 enter_nn.m
字号:
% File Name : enter_nn.m
% Purpose : Entering program main window
% Author : Hossam E. Mostafa Abdelbaki, School of Computer Science,
% University of Centeral Florida (UCF).
% Release : ver. 1.0.
% Date : October 1998.
%
% RNNSIM is a software program available to the user without any
% license or royalty fees. Permission is hereby granted to use, copy,
% modify, and distribute this software for any purpose. The Author
% and UCF give no warranty, express, implied, or statuary for the
% software including, without limitation, waranty of merchantibility
% and warranty of fitness for a particular purpose. The software
% provided hereunder is on an "as is" basis, and the Author and the
% UCF has no obligation to provide maintenance, support, updates,
% enhancements, or modifications.
%
% RNNSIM is available for any platform (UNIX, PCWIN, MACHITOCH).
% It runs under MATLAB ver. 5.0 or highrer.
%
% User feedback, bugs, or software and manual suggestions can
% be sent via electronic mail to : ahossam@cs.ucf.edu
function enter_nn()
close(gcbf);
RnnFigHndl = findobj('Tag','RnnFig');
if(isempty(RnnFigHndl) == 1)
rnn3_gui;
else
figure(RnnFigHndl);
end
fid = fopen('count','r');
if(fid ~= -1)
cc = fscanf(fid,'%d',1);
fclose(fid);
fid = fopen('count','w');
fprintf(fid,'%d',cc+1);
fclose(fid);
else
fid = fopen('count','w');
fprintf(fid,'%d',1);
fclose(fid);
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -