资源简介
matlab程序编码,可视化,船舶航线优化,船舶供油补给子程序
代码片段和文件信息
function varargout = untitled(varargin)
% UNtitleD MATLAB code for untitled.fig
% UNtitleD by itself creates a new UNtitleD or raises the existing
% singleton*.
%
% H = UNtitleD returns the handle to a new UNtitleD or the handle to
% the existing singleton*.
%
% UNtitleD(‘CALLBACK‘hobjecteventDatahandles...) calls the local
% function named CALLBACK in UNtitleD.M with the given input arguments.
%
% UNtitleD(‘Property‘‘Value‘...) creates a new UNtitleD or raises the
% existing singleton*. Starting from the left property value pairs are
% applied to the GUI before untitled_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to untitled_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 untitled
% Last Modified by GUIDE v2.5 03-Nov-2016 11:34:55
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @untitled_OpeningFcn ...
‘gui_OutputFcn‘ @untitled_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 untitled is made visible.
function untitled_OpeningFcn(hobject ~ 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 untitled (see VARARGIN)
% Choose default command line output for untitled
handles.output = hobject;
% Update handles structure
guidata(hobject handles);
% UIWAIT makes untitled wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = untitled_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;
function Cr_edit_Callback(hobject eventdata handles)
% hobject handle to Cr_edit (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles an
- 上一篇:盲道分割.zip含过程图
- 下一篇:并联机器人动力学matlab求解
相关资源
- 雷达回波仿真 matlab源程序
- 激光器速率方程matlab程序
- 粒子群优化算法演示及matlab源程序
- 禁忌算法matlab源程序
- 中心差分法Matlab源程序
- 灰度图像的二维Otsu自动阈值分割法
- 无线传感网络节点不同算法下的能量
- 模糊神经网络matlab源程序
- 粒子群优化算法Matlab源程序
- matlab源程序 生成树叶状图形
- 深度优先搜索matlab源程序代码
- 模糊聚类matlab源程序代码
- 背包问题遗传算法matlab源程序代码
- fisher判别matlab源程序代码
- 高等光学仿真》matlab源程序
- 数字信号处理——基于计算机的方法
- 粒子群算法解决企业生产调度问题m
- 自适应与系统辨识中增广递推最小二
- MATLAB源程序代码分享:MATLAB实现牛顿
- FDTD(时域有限差分法)算法的Matlab源
- FDTD算法的Matlab源程序
- 机械臂轨迹规划
- IAPWS -IF97 matlab源程序
- mfsk调制解调matlab源程序
- 卡尔曼滤波EKF UKF PF对比matlab源程序
- NSGA-3matlab源程序
- 经济调度粒子群算法matlab源程序
- 多目标粒子群算法matlab源程序
- RBF神经网络的训练 MATLAB源程序代码
- 瑞利衰落信道的matlab源程序
评论
共有 条评论