【光学】 基于matlab GUI光的双缝干涉【含Matlab源码 455期】
2021/6/28 20:50:48
本文主要是介绍【光学】 基于matlab GUI光的双缝干涉【含Matlab源码 455期】,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
一、简介
基于matlab GUI光的双缝干涉
二、源代码
function varargout = gui_light_13_9(varargin) % GUI_LIGHT_13_9 M-file for gui_light_13_9.fig % GUI_LIGHT_13_9, by itself, creates a new GUI_LIGHT_13_9 or raises the existing % singleton*. % % H = GUI_LIGHT_13_9 returns the handle to a new GUI_LIGHT_13_9 or the handle to % the existing singleton*. % % GUI_LIGHT_13_9('CALLBACK',hObject,eventData,handles,...) calls the local % function named CALLBACK in GUI_LIGHT_13_9.M with the given input arguments. % % GUI_LIGHT_13_9('Property','Value',...) creates a new GUI_LIGHT_13_9 or raises the % existing singleton*. Starting from the left, property value pairs are % applied to the GUI before gui_light_13_9_OpeningFunction gets called. An % unrecognized property name or invalid value makes property application % stop. All inputs are passed to gui_light_13_9_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_light_13_9 % Last Modified by GUIDE v2.5 08-Sep-2007 17:51:39 % Begin initialization code - DO NOT EDIT gui_Singleton = 1; gui_State = struct('gui_Name', mfilename, ... 'gui_Singleton', gui_Singleton, ... 'gui_OpeningFcn', @gui_light_13_9_OpeningFcn, ... 'gui_OutputFcn', @gui_light_13_9_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_light_13_9 is made visible. function gui_light_13_9_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_light_13_9 (see VARARGIN) % Choose default command line output for gui_light_13_9 set(handles.lambda_edit,'String',0.0000006); set(handles.d_edit,'String',0.0015); set(handles.z_edit,'String',2); handles.output = hObject; % Update handles structure guidata(hObject, handles); % UIWAIT makes gui_light_13_9 wait for user response (see UIRESUME) % uiwait(handles.figure1); % --- Outputs from this function are returned to the command line. function varargout = gui_light_13_9_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 light_pushbutton. function light_pushbutton_Callback(hObject, eventdata, handles) % hObject handle to light_pushbutton (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) Lambda=str2num(get(handles.lambda_edit,'String')); d=str2num(get(handles.d_edit,'String')); z=str2num(get(handles.z_edit,'String')); yMax=5*Lambda*z/d;xs=yMax; Ny=101;ys=linspace(-yMax,yMax,Ny); for i=1:Ny L1=sqrt((ys(i)-d/2).^2+z.^2); L2=sqrt((ys(i)+d/2).^2+z.^2); Phi=2*pi*(L2-L1)/Lambda; B(i,:)=4*cos(Phi/2).^2; end NCL=255;%确定所用灰度等级为255级 Br=(B/4.0)*NCL;%定标,使最大光强(4.0)定为最大灰度级(白色) axes(handles.axes1) image(xs,ys,Br); colormap(gray(NCL)); xlabel('双缝干涉条纹') axes(handles.axes2) plot(B(:),ys); xlabel('双缝干涉光强分布') % --- Executes on button press in close_pushbutton. function close_pushbutton_Callback(hObject, eventdata, handles) % hObject handle to close_pushbutton (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) close function lambda_edit_Callback(hObject, eventdata, handles) % hObject handle to lambda_edit (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) % Hints: get(hObject,'String') returns contents of lambda_edit as text % str2double(get(hObject,'String')) returns contents of lambda_edit as a double % --- Executes during object creation, after setting all properties. function lambda_edit_CreateFcn(hObject, eventdata, handles) % hObject handle to lambda_edit (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles empty - handles not created until after all CreateFcns called
三、运行结果
四、备注
版本:2014a
完整代码或代写加QQ1564658423
这篇关于【光学】 基于matlab GUI光的双缝干涉【含Matlab源码 455期】的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23Springboot应用的多环境打包入门
- 2024-11-23Springboot应用的生产发布入门教程
- 2024-11-23Python编程入门指南
- 2024-11-23Java创业入门:从零开始的编程之旅
- 2024-11-23Java创业入门:新手必读的Java编程与创业指南
- 2024-11-23Java对接阿里云智能语音服务入门详解
- 2024-11-23Java对接阿里云智能语音服务入门教程
- 2024-11-23JAVA对接阿里云智能语音服务入门教程
- 2024-11-23Java副业入门:初学者的简单教程
- 2024-11-23JAVA副业入门:初学者的实战指南