?? ventana2.m
字號:
function varargout = Ventana2(varargin)
% VENTANA2 M-file for Ventana2.fig
% VENTANA2, by itself, creates a new VENTANA2 or raises the existing
% singleton*.
%
% H = VENTANA2 returns the handle to a new VENTANA2 or the handle to
% the existing singleton*.
%
% VENTANA2('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in VENTANA2.M with the given input arguments.
%
% VENTANA2('Property','Value',...) creates a new VENTANA2 or raises the
% existing singleton*. Starting from the left, property value pairs are
% applied to the GUI before Ventana2_OpeningFunction gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to Ventana2_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
% Copyright 2002-2003 The MathWorks, Inc.
% Edit the above text to modify the response to help Ventana2
% Last Modified by GUIDE v2.5 31-Oct-2007 21:34:22
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @Ventana2_OpeningFcn, ...
'gui_OutputFcn', @Ventana2_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 Ventana2 is made visible.
function Ventana2_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 Ventana2 (see VARARGIN)
% Choose default command line output for Ventana2
handles.output = hObject;
% Update handles structure
guidata(hObject, handles);
% UIWAIT makes Ventana2 wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = Ventana2_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;
axes(handles.axes1);
imagen=imread('background','jpeg');
image(imagen)
axis off
load efecto
sound(efecto,22000)
function f1_Callback(hObject, eventdata, handles)
% hObject handle to f1 (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 f1 as text
% str2double(get(hObject,'String')) returns contents of f1 as a double
f1 = str2double(get(hObject, 'String'));
handles.metricdata.f1 = f1;
guidata(hObject,handles)
% --- Executes during object creation, after setting all properties.
function f1_CreateFcn(hObject, eventdata, handles)
% hObject handle to f1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit 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
function f2_Callback(hObject, eventdata, handles)
% hObject handle to f2 (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 f2 as text
% str2double(get(hObject,'String')) returns contents of f2 as a double
f2 = str2double(get(hObject, 'String'));
handles.metricdata.f2 = f2;
guidata(hObject,handles)
% --- Executes during object creation, after setting all properties.
function f2_CreateFcn(hObject, eventdata, handles)
% hObject handle to f2 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit 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
function f3_Callback(hObject, eventdata, handles)
% hObject handle to f3 (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 f3 as text
% str2double(get(hObject,'String')) returns contents of f3 as a double
f3 = str2double(get(hObject, 'String'));
handles.metricdata.f3 = f3;
guidata(hObject,handles)
% --- Executes during object creation, after setting all properties.
function f3_CreateFcn(hObject, eventdata, handles)
% hObject handle to f3 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit 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
function f4_Callback(hObject, eventdata, handles)
% hObject handle to f4 (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 f4 as text
% str2double(get(hObject,'String')) returns contents of f4 as a double
f4 = str2double(get(hObject, 'String'));
handles.metricdata.f4 = f4;
guidata(hObject,handles)
% --- Executes during object creation, after setting all properties.
function f4_CreateFcn(hObject, eventdata, handles)
% hObject handle to f4 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit 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
function tmax_Callback(hObject, eventdata, handles)
% hObject handle to tmax (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 tmax as text
% str2double(get(hObject,'String')) returns contents of tmax as a double
tmax = str2double(get(hObject, 'String'));
handles.metricdata.tmax = tmax;
guidata(hObject,handles)
% --- Executes during object creation, after setting all properties.
function tmax_CreateFcn(hObject, eventdata, handles)
% hObject handle to tmax (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit 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 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)
fs1=2*handles.metricdata.f1*10;
fs2=2*handles.metricdata.f2*10;
fs3=2*handles.metricdata.f3*10;
fs4=2*handles.metricdata.f4*10;
t1=0:1/fs1:handles.metricdata.tmax;
t2=0:1/fs2:handles.metricdata.tmax;
t3=0:1/fs3:handles.metricdata.tmax;
t4=0:1/fs4:handles.metricdata.tmax;
[a b]=size(t1);
[c d]=size(t2);
[e f]=size(t3);
[g h]=size(t4);
filas=[b d f h];
menor_filas=min(filas);
t1=t1(1,1:filas);
t2=t2(1,1:filas);
t3=t3(1,1:filas);
t4=t4(1,1:filas);
y1=sin(2*pi*handles.metricdata.f1*t1);
y2=cos(2*pi*handles.metricdata.f2*t2);
y3=sin(2*pi*handles.metricdata.f3*t3)+cos(2*pi*handles.metricdata.f4*t4);
save se馻les.txt t1 t2 t3 t4 y1 y2 y3 -ascii;
% --- Executes on button press in pushbutton2.
function pushbutton2_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton2 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% --- Executes during object creation, after setting all properties.
function uipanel1_CreateFcn(hObject, eventdata, handles)
% hObject handle to uipanel1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% --- Executes during object creation, after setting all properties.
function frame1_CreateFcn(hObject, eventdata, handles)
% hObject handle to frame1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -