资源描述:
《MATLAB学生成绩管理系统》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、functionvarargout=untitled1(varargin)gui_Singleton=1;gui_State=struct('gui_Name',mfilename,...'gui_Singleton',gui_Singleton,...'gui_OpeningFcn',@untitled1_OpeningFcn,...'gui_OutputFcn',@untitled1_OutputFcn,...'gui_LayoutFcn',[],...'gui_Callback',[]);ifnargin&&ischar(varargin{1})gui_S
2、tate.gui_Callback=str2func(varargin{1});endifnargout[varargout{1:nargout}]=gui_mainfcn(gui_State,varargin{:});elsegui_mainfcn(gui_State,varargin{:});endfunctionuntitled1_OpeningFcn(hObject,eventdata,handles,varargin)handles.output=hObject;%取数handles.data=[];%生成data空数组handles.text=[];
3、%生成text空数组guidata(hObject,handles);%保存更新数据handles.output=hObject;guidata(hObject,handles);functionvarargout=untitled1_OutputFcn(hObject,eventdata,handles)varargout{1}=handles.output;%————————————————————excel表格入口——————————————————————functiondaoru_Callback(hObject,eventdata,handles)%
4、可编辑信息表格导入文本框functiondaoru_CreateFcn(hObject,eventdata,handles)ifispc&&isequal(get(hObject,'BackgroundColor'),get(0,'defaultUicontrolBackgroundColor'))set(hObject,'BackgroundColor','white');endfunctionsure_Callback(hObject,eventdata,handles)%导入数据确定按钮[FileName,PathName]=uigetfile({'*.x
5、ls'},'Chooseafile');str=[PathName,FileName];set(handles.daoru,'string',str);%显示入可编辑数据导入文本框[data,text_data]=xlsread(str);%读取str并生成新的数组mess1=data(:,1);%访问excel表格第一列set(handles.showI,'string',mess1)%把字符串显示在显示学号列表mess3=data(:,3);%访问excel表格第三列set(handles.showc,'string',mess3)%把字符串显示在显示语文列
6、表mess4=data(:,4);%访问excel列表第四列set(handles.showm,'string',mess4)%把字符串显示在显示数学列表mess5=data(:,5);%访问excel列表第五列set(handles.showe,'string',mess5)%把字符串显示在显示英语列表mess2=text_data(2:end,2);%访问excel列表第二列set(handles.shown,'string',mess2)%把字符串显示在显示名字列表handles.mess2=mess2handles.data=data;%保存数据hand
7、les.text=text_data;guidata(hObject,handles);%——————————————————————信息查询显示口————————————————————functionsearchz_Callback(hObject,eventdata,handles)%可编辑总分输出文本框functionsearchz_CreateFcn(hObject,eventdata,handles)ifispc&&isequal(get(hObject,'BackgroundColor'),get(0,'defaultUicontrolBackgr
8、oundColor'))