代码之家  ›  专栏  ›  技术社区  ›  inSearchofAnswers

使用Matlab GUI按钮调用函数

  •  0
  • inSearchofAnswers  · 技术社区  · 9 年前

    我正在尝试调用一个函数 qrsdet(vecParam1,scaParam1,scaParam2) 在GUIDE中使用按钮 startAnalysis 。这是代码:

    GUI代码:

    % --- Executes just before GUIforUser is made visible.
    function GUIforUser_OpeningFcn(hObject, eventdata, handles, varargin)
    
    handles.output = hObject;
    guidata(hObject, handles);
    
    -------
    % remaining GUI code
    -------
    
    % pushbutton code to call function
    function qrsdetfn_Callback(hObject, eventdata, handles)
    
    hr = qrsdet(vecArg1,scaArg1,scaArg2);
    textLabel = sprintf('%.2f', hr);
    set(handles.heartratetext, 'String', hr);
    guidata(hObject,handles)
    

    我定义了一个名为 qrsdet.m ,它与我的GUI位于同一目录中。所有三个参数都是使用GUI从用户处获取的。问题是,当我将参数传递给函数时,我会得到错误:

    Undefined function or variable 'vecArg1'.
    

    我已存储 vecArg1 handles 结构。我甚至尝试过使用以下语句:

    qrsdet(handles.vecArg1,scaArg1,scaArg2)
    

    但这返回错误:

    Reference to non-existent field 'vecArg1'
    

    这是我用来加载的按钮 vecArg1

    % --- Executes on button press
    function pushbtnForvecArg1_Callback(hObject, eventdata, handles)
    
    handles.fileloc = get(handles.filelocation,'String');
    fileID = fopen(handles.fileloc);
    handles.vecArg1 = fscanf(fileID,'%f',inf);
    assignin('base','vecArg1',handles.vecArg1);
    guidata(hObject,handles)
    

    我对Matlab中的GUI设计很陌生,有什么问题吗?

    1 回复  |  直到 9 年前
        1
  •  1
  •   deanshanahan    9 年前

    我认为问题在于你的输入参数。

    在MATLAB中启动任何函数时,必须为变量赋值。MATLAB GUIDE不允许使用变量。这意味着您使用了vecArg1、vecArg 2和vecAr3。它本质上认为您使用了一个不存在的变量。

    我认为以下代码可能适用于您。

    使用以下方法设置变量:

    setappdata(hObject.Parent, 'vecArg1', desired_value_to_be_stored);
    

    这将允许您在GUIDE文件的不同部分中使用以下代码来检索此数据:

    data_to_be_used = getappdata(hObject.Parent, 'vecArg1');
    

    这有点枯燥,但应该能奏效。

    ~~~~~~~~~~~~~~~~~~~~~~~~

    EDIT1:setappdata和getappdata的使用演示

    GUIDE m文件,该图包含:

    按钮1->获取数据&测验

    按钮2->设置数据

    function varargout = gui_example(varargin)
    % GUI_EXAMPLE MATLAB code for gui_example.fig
    %      GUI_EXAMPLE, by itself, creates a new GUI_EXAMPLE or raises the existing
    %      singleton*.
    %
    %      H = GUI_EXAMPLE returns the handle to a new GUI_EXAMPLE or the handle to
    %      the existing singleton*.
    %
    %      GUI_EXAMPLE('CALLBACK',hObject,eventData,handles,...) calls the local
    %      function named CALLBACK in GUI_EXAMPLE.M with the given input arguments.
    %
    %      GUI_EXAMPLE('Property','Value',...) creates a new GUI_EXAMPLE or raises the
    %      existing singleton*.  Starting from the left, property value pairs are
    %      applied to the GUI before gui_example_OpeningFcn gets called.  An
    %      unrecognized property name or invalid value makes property application
    %      stop.  All inputs are passed to gui_example_OpeningFcn via varargin.
    %
    %      *See GUI Options on GUIDE's Tools menu.  Choose "GUI allows only one
    %      instance to run (singleton)".
    %
    % See also: GUIDE, GUIDATA, GUIHANDLES
    
    % Edit the above text to modify the response to help gui_example
    
    % Last Modified by GUIDE v2.5 10-Apr-2016 15:17:00
    
    % Begin initialization code - DO NOT EDIT
    gui_Singleton = 1;
    gui_State = struct('gui_Name',       mfilename, ...
                       'gui_Singleton',  gui_Singleton, ...
                       'gui_OpeningFcn', @gui_example_OpeningFcn, ...
                       'gui_OutputFcn',  @gui_example_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
    % End initialization code - DO NOT EDIT
    
    
    % --- Executes just before gui_example is made visible.
    function gui_example_OpeningFcn(hObject, eventdata, handles, varargin)
    % This function has no output args, see OutputFcn.
    % hObject    handle to figure
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
    % varargin   command line arguments to gui_example (see VARARGIN)
    
    % Choose default command line output for gui_example
    handles.output = hObject;
    
    % Update handles structure
    guidata(hObject, handles);
    
    % UIWAIT makes gui_example wait for user response (see UIRESUME)
    % uiwait(handles.figure1);
    
    
    % --- Outputs from this function are returned to the command line.
    function varargout = gui_example_OutputFcn(hObject, eventdata, handles) 
    % varargout  cell array for returning output args (see VARARGOUT);
    % hObject    handle to figure
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
    
    % Get default command line output from handles structure
    varargout{1} = handles.output;
    
    
    % --- Executes on button press in pushbutton1.
    function pushbutton1_Callback(hObject, eventdata, handles)
    % hObject    handle to pushbutton1 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
    
    status = printvector(getappdata(hObject.Parent, 'vecArg1'));
    
    disp(status);
    
    % --- Executes on button press in pushbutton2.
    function pushbutton2_Callback(hObject, eventdata, handles)
    % hObject    handle to pushbutton2 (see GCBO)
    % eventdata  reserved - to be defined in a future version of MATLAB
    % handles    structure with handles and user data (see GUIDATA)
    
    
    %Set vector argument
    vectorArgument1 = [1.001; 1.002; 1.003; 1.004];
    setappdata(hObject.Parent, 'vecArg1', vectorArgument1);
    

    按下按钮时调用的功能:

    function [ status ] = printvector( vec1 )
        disp('I am in the function')
        for i = 1:length(vec1)
            disp(vec1(i,1));
        end
    
        status = 'success';
    end
    
    推荐文章