• 大小: 3.22MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-10-15
  • 语言: Matlab
  • 标签: matlab  

资源简介

matlab简单的统计硬币个数程序,包含示例图片,运行m文件即可出现GUI 界面,选择文件,开始统计即可

资源截图

代码片段和文件信息

function varargout = countingnumberofcoins(varargin)
% COUNTINGNUMBEROFCOINS MATLAB code for countingnumberofcoins.fig
%      COUNTINGNUMBEROFCOINS by itself creates a new COUNTINGNUMBEROFCOINS or raises the existing
%      singleton*.
%
%      H = COUNTINGNUMBEROFCOINS returns the handle to a new COUNTINGNUMBEROFCOINS or the handle to
%      the existing singleton*.
%
%      COUNTINGNUMBEROFCOINS(‘CALLBACK‘hobjecteventDatahandles...) calls the local
%      function named CALLBACK in COUNTINGNUMBEROFCOINS.M with the given input arguments.
%
%      COUNTINGNUMBEROFCOINS(‘Property‘‘Value‘...) creates a new COUNTINGNUMBEROFCOINS or raises the
%      existing singleton*.  Starting from the left property value pairs are
%      applied to the GUI before countingnumberofcoins_OpeningFcn gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to countingnumberofcoins_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

%---------------------------------------------%
%       %
%          工作室提供代做matlab仿真       %
%       %
%  详情请访问:http://cn.mikecrm.com/DeOOXFc  %
%       %
%---------------------------------------------%


gui_Singleton = 1;
gui_State = struct(‘gui_Name‘       mfilename ...
                   ‘gui_Singleton‘  gui_Singleton ...
                   ‘gui_OpeningFcn‘ @countingnumberofcoins_OpeningFcn ...
                   ‘gui_OutputFcn‘  @countingnumberofcoins_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 countingnumberofcoins is made visible.
function countingnumberofcoins_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 countingnumberofcoins (see VARARGIN)

% Choose default command line output for countingnumberofcoins
handles.output = hobject;

% Update handles structure
guidata(hobject handles);

% UIWAIT makes countingnumberofcoins wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = countingnumberofcoins_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    struct

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-07-08 15:57  matlab简单的统计硬币个数程序,包含示例图片,运行m文件即可出现GUI 界面,选择文件,开始统计即可\
     文件        6177  2016-11-09 12:14  matlab简单的统计硬币个数程序,包含示例图片,运行m文件即可出现GUI 界面,选择文件,开始统计即可\countingnumberofcoins.fig
     文件        7842  2019-07-08 15:59  matlab简单的统计硬币个数程序,包含示例图片,运行m文件即可出现GUI 界面,选择文件,开始统计即可\countingnumberofcoins.m
     文件     2703971  2016-11-09 11:39  matlab简单的统计硬币个数程序,包含示例图片,运行m文件即可出现GUI 界面,选择文件,开始统计即可\IMG_20161107_221241.jpg
     文件      501502  2016-11-09 11:39  matlab简单的统计硬币个数程序,包含示例图片,运行m文件即可出现GUI 界面,选择文件,开始统计即可\IMG_20161107_222144.jpg
     文件      160452  2016-11-09 11:39  matlab简单的统计硬币个数程序,包含示例图片,运行m文件即可出现GUI 界面,选择文件,开始统计即可\IMG_20161107_222413.jpg
     文件          55  2019-07-03 17:00  【源码使用必读】.url

评论

共有 条评论