使用Matlab GUI按钮调用函数

时间:2016-04-09 21:12:43

标签: matlab function user-interface matlab-guide

我正在尝试使用按钮lesson_details_list在GUIDE中调用函数$.ajax(/* settings */) .then(function(xml) { var doc = $(xml.documentElement); doc.find("lesson_details_list *").each(function(index, el) { console.log($.trim(el.textContent)) }) }) 。这是代码:

GUI代码:

qrsdet(vecParam1,scaParam1,scaParam2)

我已经定义了一个名为startAnalysis的.m文件,该文件与我的GUI位于同一目录中。使用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存储在matlab GUI的Undefined function or variable 'vecArg1'. 结构中。我甚至试过使用以下声明:

vecArg1

但这会返回错误:

handles

这是我用来加载qrsdet(handles.vecArg1,scaArg1,scaArg2)

的按钮
Reference to non-existent field 'vecArg1'

我是Matlab中GUI设计的新手,可能是什么问题的指针?

1 个答案:

答案 0 :(得分:1)

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

在MATLAB中启动任何函数时,必须为变量赋值。 MATLAB GUIDE不允许在使用vecArg1,vecArg2和vecArg3的方法中使用变量。它基本上认为你使用了一个不存在的变量。

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

使用以下方式设置变量:

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

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

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

这有点乏味但它应该有用。

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

EDIT1:演示使用setappdata和getappdata

GUIDE m-file,图包含:

pushbutton1 - >得到数据&测试

按钮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