机床数控技术课程设计说明书
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
机床数控技术课程设计说明书
指导老师:
姓名:
班级:
学号:
2014/01/10
目录
一课设任务 (1)
二课设要求 (1)
(一)DDA第四象限直线插补 (1)
(二)逐点比较法第2~1象限顺圆弧插补 (2)
(一)DDA第四象限直线插补 (5)
(5)
(二)逐点比较法第1~2象限逆圆弧插补 (6)
(6)
六源程序 (6)
function varargout = f2(varargin) (6)
% F2 MATLAB code for f2.fig (6)
% F2, by itself, creates a new F2 or raises the existing (6)
% singleton*. (6)
% (6)
% H = F2 returns the handle to a new F2 or the handle to (6)
% the existing singleton*. (6)
% (6)
% F2('CALLBACK',hObject,eventData,handles,...) calls the local (6)
% function named CALLBACK in F2.M with the given input arguments. (6)
% (6)
% F2('Property','Value',...) creates a new F2 or raises the (6)
% existing singleton*. Starting from the left, property value pairs are (6)
% applied to the GUI before f2_OpeningFcn gets called. An (6)
% unrecognized property name or invalid value makes property application (7)
% stop. All inputs are passed to f2_OpeningFcn via varargin. (7)
% (7)
% *See GUI Options on GUIDE's Tools menu. Choose "GUI allows only one (7)
% instance to run (singleton)". (7)
% (7)
% See also: GUIDE, GUIDATA, GUIHANDLES (7)
% Edit the above text to modify the response to help f2 (7)
% Last Modified by GUIDE v2.5 09-Jan-2014 10:52:17 (7)
% Begin initialization code - DO NOT EDIT (7)
gui_Singleton = 1; (7)
gui_State = struct('gui_Name', mfilename, ... .. (7)
'gui_Singleton', gui_Singleton, ... . (7)
'gui_OpeningFcn', @f2_OpeningFcn, ... (7)
'gui_OutputFcn', @f2_OutputFcn, ... . (7)
'gui_LayoutFcn', [] , ... (7)
'gui_Callback', []); (7)
if nargin && ischar(varargin{1}) (7)
gui_State.gui_Callback = str2func(varargin{1}); (7)
end (7)
if nargout (7)
[varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:}); (7)
else (7)
gui_mainfcn(gui_State, varargin{:}); (7)
end (7)
% End initialization code - DO NOT EDIT (7)
% --- Executes just before f2 is made visible. (7)
function f2_OpeningFcn(hObject, eventdata, handles, varargin) (7)
% This function has no output args, see OutputFcn. (7)
% hObject handle to figure (7)
% eventdata reserved - to be defined in a future version of MATLAB (7)
% handles structure with handles and user data (see GUIDATA) (7)
% varargin command line arguments to f2 (see VARARGIN) (7)
% Choose default command line output for f2 (7)
handles.output = hObject; (7)
% Update handles structure (7)
guidata(hObject, handles); (8)
% UIWAIT makes f2 wait for user response (see UIRESUME) (8)
% uiwait(handles.figure1); (8)
% --- Outputs from this function are returned to the command line. (8)
function varargout = f2_OutputFcn(hObject, eventdata, handles) (8)
% varargout cell array for returning output args (see VARARGOUT); (8)
% hObject handle to figure (8)
% eventdata reserved - to be defined in a future version of MATLAB (8)
% handles structure with handles and user data (see GUIDATA) (8)
% Get default command line output from handles structure (8)
varargout{1} = handles.output; (8)
% --- Executes on button press in pushbutton1. (8)