doubts regarding GUI. can some one explain me the code thats generated in each GUI? i hav given the code in the body.
    8 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    function varargout = compression(varargin)
    gui_Singleton = 1;
    gui_State = struct('gui_Name',       mfilename, ...
                       'gui_Singleton',  gui_Singleton, ...
                       'gui_OpeningFcn', @compression_OpeningFcn, ...
                       'gui_OutputFcn',  @compression_OutputFcn, ...
                       'gui_LayoutFcn',  [] , ...
                       'gui_Callback',   []);
    if nargin && ischar(varargin{1})
        gui_State.gui_Callback = str2func(varargin{1});
    end
    if nargout
        [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
    else
        gui_mainfcn(gui_State, varargin{:});
    end
3 Kommentare
Antworten (0)
Siehe auch
Kategorien
				Mehr zu Graphics Object Properties finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


