⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 zhuwx.m

📁 用 Matlab 编程模拟 李萨如曲线 两互相垂直的
💻 M
字号:
function varargout = zhuwx(varargin)
% ZHUWX M-file for zhuwx.fig
%      ZHUWX, by itself, creates a new ZHUWX or raises the existing
%      singleton*.
%
%      H = ZHUWX returns the handle to a new ZHUWX or the handle to
%      the existing singleton*.
%
%      ZHUWX('CALLBACK',hObject,eventData,handles,...) calls the local
%      function named CALLBACK in ZHUWX.M with the given input arguments.
%
%      ZHUWX('Property','Value',...) creates a new ZHUWX or raises the
%      existing singleton*.  Starting from the left, property value pairs are
%      applied to the GUI before zhuwx_OpeningFunction gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to zhuwx_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 zhuwx

% Last Modified by GUIDE v2.5 10-Jan-2005 18:31:53
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name',       mfilename, ...
                   'gui_Singleton',  gui_Singleton, ...
                   'gui_OpeningFcn', @zhuwx_OpeningFcn, ...
                   'gui_OutputFcn',  @zhuwx_OutputFcn, ...
                   'gui_LayoutFcn',  [] , ...
                   'gui_Callback',   []);
if nargin & isstr(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 zhuwx is made visible.
function zhuwx_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 zhuwx (see VARARGIN)

% Choose default command line output for zhuwx
handles.output = hObject;

% Update handles structure
guidata(hObject, handles);

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


% --- Outputs from this function are returned to the command line.
function varargout = zhuwx_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 during object creation, after setting all properties.function popupmenu1_CreateFcn(hObject, eventdata, handles)% hObject    handle to popupmenu1 (see GCBO)% eventdata  reserved - to be defined in a future version of MATLAB% handles    empty - handles not created until after all CreateFcns called% Hint: popupmenu controls usually have a white background on Windows.%       See ISPC and COMPUTER.if ispc    set(hObject,'BackgroundColor','white');else    set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));end% --- Executes on selection change in popupmenu1.function popupmenu1_Callback(hObject, eventdata, handles)% hObject    handle to popupmenu1 (see GCBO)% eventdata  reserved - to be defined in a future version of MATLAB% handles    structure with handles and user data (see GUIDATA)% Hints: contents = get(hObject,'String') returns popupmenu1 contents as cell array%        contents{get(hObject,'Value')} returns selected item from popupmenu1% --- Executes during object creation, after setting all properties.function popupmenu2_CreateFcn(hObject, eventdata, handles)% hObject    handle to popupmenu2 (see GCBO)% eventdata  reserved - to be defined in a future version of MATLAB% handles    empty - handles not created until after all CreateFcns called% Hint: popupmenu controls usually have a white background on Windows.%       See ISPC and COMPUTER.if ispc    set(hObject,'BackgroundColor','white');else    set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));end% --- Executes on selection change in popupmenu2.function popupmenu2_Callback(hObject, eventdata, handles)% hObject    handle to popupmenu2 (see GCBO)% eventdata  reserved - to be defined in a future version of MATLAB% handles    structure with handles and user data (see GUIDATA)% Hints: contents = get(hObject,'String') returns popupmenu2 contents as cell array%        contents{get(hObject,'Value')} returns selected item from popupmenu2% --- 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)ax=get(handles.popupmenu1,'Value');
switch ax
    case 1
        a=1/3; 
    case 2
        a=1/2;
    case 3
        a=2/3;
    case 4
        a=1;
    case 5
        a=4/3;
    case 6
        a=3/2;
    case 7
        a=5/3;
    case 8
        a=2;
end

selpop=get(handles.popupmenu2,'Value');
switch selpop
    case 1
        k=1; 
    case 2
        k=2;
    case 3
        k=3;
    case 4
        k=4;
    case 5
        k=5;
    case 6
        k=6;
    case 7
        k=7;
    case 8
        k=8;
    case 9
        k=9;
    case 10
        k=10;
end
a=a*pi;
A1=0.05;A2=0.04;
w1=4*pi;w2=k*w1;
o1=pi/3;o2=o1+a;
t=-40:0.005:40;
n=length(t);
x=A1*cos(w1*t+o1);
y=A2*cos(w2*t+o2);
comet(x,y,0.3)
plot(x,y,'-b',x,zeros(1,n),zeros(1,n),x)
axis([-0.05,0.05,-0.05,0.05])

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -