matlab连续卷积动画实现(gui编程)

一.代码运行结果

在这里插入图片描述

二.代码

function varargout = tianqi(varargin)
% TIANQI MATLAB code for tianqi.fig
%      TIANQI, by itself, creates a new TIANQI or raises the existing
%      singleton*.
%
%      H = TIANQI returns the handle to a new TIANQI or the handle to
%      the existing singleton*.
%
%      TIANQI('CALLBACK',hObject,eventData,handles,...) calls the local
%      function named CALLBACK in TIANQI.M with the given input arguments.
%
%      TIANQI('Property','Value',...) creates a new TIANQI or raises the
%      existing singleton*.  Starting from the left, property value pairs are
%      applied to the GUI before tianqi_OpeningFcn gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to tianqi_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 tianqi% Last Modified by GUIDE v2.5 18-Oct-2020 21:54:40% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name',       mfilename, ...'gui_Singleton',  gui_Singleton, ...'gui_OpeningFcn', @tianqi_OpeningFcn, ...'gui_OutputFcn',  @tianqi_OutputFcn, ...'gui_LayoutFcn',  [] , ...'gui_Callback',   []);
if nargin && ischar(varargin{1})gui_State.gui_Callback = str2func(varargin{1});
endif nargout[varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
elsegui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT% --- Executes just before tianqi is made visible.
function tianqi_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 tianqi (see VARARGIN)% Choose default command line output for tianqi
handles.output = hObject;% Update handles structure
guidata(hObject, handles);% UIWAIT makes tianqi wait for user response (see UIRESUME)
% uiwait(handles.figure1);% --- Outputs from this function are returned to the command line.
function varargout = tianqi_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 pushbutton1.
% 绘制x图形
function pushbutton1_Callback(hObject, eventdata, handles)
res1=get(handles.edit1,'String');  %获取参数a(string)
res2=get(handles.edit2,'String');  %获取参数b(string)
if isempty(res1)msgbox('input a first','warn','warn');return
elsea=str2double(res1);   %判断a是否为空值
end
if isempty(res2)msgbox('input b first','warn','warn');return
elseb=str2double(res2);  %判断b是否为空值
end
choose_x=get(handles.popupmenu1,'value');  
%获取函数x类型
switch choose_xcase 1   %门函数if b<=0msgbox('b should be positive','warn','warn');returnend
t_start=a-b/2;
t_end=a+b/2;  %门函数起点与终点
x_start=t_start-3;  %限定x坐标轴范围
x_end=t_end+3;
t=x_start:0.001:x_end;%定义时间向量
f=@(t) (t.*0+1).*(t>=t_start&t<=t_end);%使用函数句柄定义门函数,门高为1
yt=f(t);  %创建门函数
y_end=max(yt)*1.1;%限定y坐标轴范围
axes(handles.axes1); %画图像在坐标轴1
plot(t,yt);  %绘图
axis([x_start,x_end,0,y_end]);  %限定坐标轴范围
grid on;  %打开网格线case 2 %三角函数if b<=0msgbox('b should be positive','warn','warn');returnendt_start=a-b/2;
t_end=a+b/2;   %三角函数起点与终点
x_start=t_start-3;  %限定x坐标轴范围
x_end=t_end+3;
t=x_start:0.001:x_end;%定义时间向量
t_center=(t_start+t_end)/2;
t_width=t_end-t_start;   %三角函数中心与宽度
a10=t_center;
b10=t_width;
f=@(t) ((2/b10).*t-(2*a10/b10)+1).*(t>=t_start&t<=t_center)+((-2/b10).*t+(2*a10/b10)+1).*(t>t_center&t<=t_end);
%使用函数句柄定义三角函数
yt=f(t);  %创建三角函数
y_end=max(yt)*1.1;%限定y坐标轴范围
axes(handles.axes1);   %画图像在坐标轴1
plot(t,yt);
axis([x_start,x_end,0,y_end]);
grid on;case 3 %阶跃函数if a==0msgbox('a can not be zero','warn','warn');returnendb10=b;
a10=a;
x_start=b10/a10-3;  %限定x坐标轴范围
x_end=b10/a10+3;
t=x_start:0.001:x_end;%定义时间向量
f=@(t) (t.*0+1).*((a10.*t-b10)>=0); %使用函数句柄定义阶跃函数
yt=f(t);  
y_end=max(yt)*1.1;%限定y坐标轴范围
axes(handles.axes1);
plot(t,yt);
axis([x_start,x_end,0,y_end]);case 4 %冲激函数if a==0msgbox('a can not be zero','warn','warn');returnendsyms f t;   b10=b;
a10=a;
f=dirac(a10*t-b10);  %定义冲激函数
x_start=b10/a10-3;  %限定x坐标轴范围
x_end=b10/a10+3;
tv=x_start:0.001:x_end;%定义时间向量
ft=double(subs(f,t,tv));  %用时间向量tv替代t
ft(find(ft==inf))=1;   %将冲激函数中无穷大量改为1
axes(handles.axes1);
plot(tv,ft);
axis([x_start x_end 0 1 ]);case 5 %单边指数if a==0msgbox('a can not be zero,due to some reasons that exsit on sources codes','warn','warn');returnenda10=a;
b10=b;
x_start=-3;  %限定x坐标轴范围
x_end=3;
t=x_start:0.001:x_end;%定义时间向量
f=@(t)  (a10*exp(-abs(b10).*t)).*(t>=0); %使用函数句柄定义单边指数信号
yt=f(t);  
y_start=min(yt)*1.1;
y_end=max(yt)*1.1;%限定y坐标轴范围
axes(handles.axes1);
plot(t,yt);
axis([x_start,x_end,y_start,y_end]);
grid on;case 6 %单边正弦波if a==0msgbox('a can not be zero,due to some reasons that exist on sources codes','warn','warn');returnenda10=a;
b10=b;
x_start=-pi/abs(a10)  ;  %限定x坐标轴范围
x_end=3*pi/abs(a) ;
t=x_start:0.001:x_end;%定义时间向量
f=@(t)  sin(a10.*t+b10).*(t>=0);
yt=f(t);  
y_end=max(yt)*1.1;%限定y坐标轴范围
y_start=min(yt)*1.1;
axes(handles.axes1);
plot(t,yt);
axis([x_start,x_end,y_start,y_end]);
grid on;
end
% 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)% --- Executes on button press in pushbutton2.
%绘制y图象
function pushbutton2_Callback(hObject, eventdata, handles)
res1=get(handles.edit3,'String');
res2=get(handles.edit4,'String');
if isempty(res1)msgbox('input a first','warn','warn');return
elsea=str2double(res1);
end
if isempty(res2)msgbox('input b first','warn','warn');return
elseb=str2double(res2);
end
choose_y=get(handles.popupmenu2,'value');
switch choose_ycase 1   %门函数if b<=0msgbox('b should be positive','warn','warn');returnend
t_start=a-b/2;
t_end=a+b/2;
x_start=t_start-3;  %限定x坐标轴范围
x_end=t_end+3;
t=x_start:0.001:x_end;%定义时间向量
f=@(t) (t.*0+1).*(t>=t_start&t<=t_end);%使用函数句柄定义门函数,门高为1
yt=f(t);  %创建门函数
y_end=max(yt)*1.1;%限定y坐标轴范围
axes(handles.axes2);
plot(t,yt,'r');
axis([x_start,x_end,0,y_end]);
grid on;case 2 %三角函数if b<=0msgbox('b should be positive','warn','warn');returnendt_start=a-b/2;
t_end=a+b/2;
x_start=t_start-3;  %限定x坐标轴范围
x_end=t_end+3;
t=x_start:0.001:x_end;%定义时间向量
t_center=(t_start+t_end)/2;
t_width=t_end-t_start;
a10=t_center;
b10=t_width;
f=@(t) ((2/b10).*t-(2*a10/b10)+1).*(t>=t_start&t<=t_center)+((-2/b10).*t+(2*a10/b10)+1).*(t>t_center&t<=t_end);
%使用函数句柄定义三角函数
yt=f(t);  %创建三角函数
y_end=max(yt)*1.1;%限定y坐标轴范围
axes(handles.axes2);
plot(t,yt,'r');
axis([x_start,x_end,0,y_end]);
grid on;case 3 %阶跃函数if a==0msgbox('a can not be zero','warn','warn');returnendb10=b;
a10=a;
x_start=b10/a10-3;  %限定x坐标轴范围
x_end=b10/a10+3;
t=x_start:0.001:x_end;%定义时间向量
f=@(t) (t.*0+1).*((a10.*t-b10)>=0);
yt=f(t);  
y_end=max(yt)*1.1;%限定y坐标轴范围
axes(handles.axes2);
plot(t,yt,'r');
axis([x_start,x_end,0,y_end]);case 4 %冲激函数if a==0msgbox('a can not be zero','warn','warn');returnendsyms f t;b10=b;
a10=a;
f=dirac(a10*t-b10);  %定义冲激函数
x_start=b10/a10-3;  %限定x坐标轴范围
x_end=b10/a10+3;
tv=x_start:0.001:x_end;%定义时间向量
ft=double(subs(f,t,tv));  %用时间向量tv替代t
ft(find(ft==inf))=1;
axes(handles.axes2);
plot(tv,ft,'r');
axis([x_start x_end 0 1 ]);
grid on;case 5 %单边指数if a==0msgbox('a can not be zero,due to some reasons that exsit on sources codes','warn','warn');returnenda10=a;
b10=b;
x_start=-3;  %限定x坐标轴范围
x_end=3;
t=x_start:0.001:x_end;%定义时间向量
f=@(t)  (a10*exp(-abs(b10).*t)).*(t>=0);
yt=f(t);  
y_start=min(yt)*1.1;
y_end=max(yt)*1.1;%限定y坐标轴范围
axes(handles.axes2);
plot(t,yt,'r');
axis([x_start,x_end,y_start,y_end]);
grid on;case 6 %单边正弦波if a==0msgbox('a can not be zero,due to some reasons that exist on sources codes','warn','warn');returnenda10=a;
b10=b;
x_start=-pi/abs(a10)  ;  %限定x坐标轴范围
x_end=3*pi/abs(a) ;
t=x_start:0.001:x_end;%定义时间向量
f=@(t)  sin(a10.*t+b10).*(t>=0);
yt=f(t);  
y_end=max(yt)*1.1;%限定y坐标轴范围
y_start=min(yt)*1.1;
axes(handles.axes2);
plot(t,yt,'r');
axis([x_start,x_end,y_start,y_end]);
grid on;end
% 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 on button press in pushbutton3.
%卷积运算
function pushbutton3_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton3 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
global flag;
flag=1;
choose1=get(handles.popupmenu1,'value');
choose2=get(handles.popupmenu2,'value');
res1=get(handles.edit1,'String');
res2=get(handles.edit2,'String');
res3=get(handles.edit3,'String');
res4=get(handles.edit4,'String');
if isempty(res1)msgbox('input a first','warn','warn');return
elsea1=str2double(res1);
end
if isempty(res2)msgbox('input b first','warn','warn');return
elseb1=str2double(res2);
end
if isempty(res3)msgbox('input b first','warn','warn');return
elsea2=str2double(res3);
end
if isempty(res4)msgbox('input b first','warn','warn');return
elseb2=str2double(res4);
end
switch choose2   %函数y图形(g表示)case 1   %门函数if b2<=0msgbox('b should be positive','warn','warn');returnendsyms   x g2;g2=heaviside(x-(a2-b2/2))-heaviside(x-(a2+b2/2));%利用阶跃函数构建门函数
t2_start=a2-b2/2;  %门函数左边界
t2_end=a2+b2/2;  %门函数右边界
g=@(t) (t.*0+1).*(t>=t2_start&t<=t2_end)+0;%使用函数句柄定义门函数,门高为1
switch choose1 %函数x图形(f表示)case 1 %门函数if b1<=0msgbox('b should be positive','warn','warn');returnend
t1_start=a1-b1/2;  %门函数左边界
t1_end=a1+b1/2;  %门函数右边界
x_start=t1_start+t2_start-3;  %坐标轴3左边界
x_end=t1_end+t2_end+3;   %坐标轴3右边界
y_start =-0.5;
if  b1>b2y_end=b2*1.1;
elsey_end=b1*1.1;
end
f=@(t) (t.*0+1).*(t>=t1_start&t<=t1_end)+0;%使用函数句柄定义门函数,门高为1case 2 %三角函数if b1<=0msgbox('b should be positive','warn','warn');returnendt1_start=a1-b1/2;  %三角函数左边界
t1_end=a1+b1/2;   %三角函数右边界
x_start=t1_start+t2_start-3;  %坐标轴3左边界
x_end=t1_end+t2_end+3;  %坐标轴3右边界
y_start =-0.5;
if  (b1/2)>b2y_end=b2*1.1;
elsey_end=(b1/2)*1.1;
end
t1_center=a1;   %三角函数中心
t1_width=b1;    %三角函数宽度
a=t1_center;
b=t1_width;
f=@(t) ((2/b).*t-(2*a/b)+1).*(t>=t1_start&t<=t1_center)+((-2/b).*t+(2*a/b)+1).*(t>t1_center&t<=t1_end);case 3 %阶跃函数if a1==0msgbox('a can not be zero','warn','warn');returnend
x1_start=b1/a1-3;  
x1_end=b1/a1+3; %阶跃函数左右边界
a=a1;
b=b1;
f=@(t) (t.*0+1).*((a.*t-b)>=0);
x_start=x1_start+t2_start-3;
x_end=x1_end+t2_end+3;
y_start=-0.5;
y_end=b2*1.1;case 4 %冲激函数if a1==0msgbox('a can not be zero','warn','warn');returnendsyms f;syms tao;x1_start=b1/a1-3;  
x1_end=b1/a1+3;  %冲激函数左右边界
x_start=x1_start+t2_start-3;
x_end=x1_end+t2_end+3;
y_start=-0.5;
if abs(a1)>1y_end=1.1;
else
y_end=round(1/abs(a1),1)*1.1;
endx_of_f=x_start:0.01:x_end;%定义时间向量f=dirac(a1*tao-b1);  %定义冲激函数y_of_f=double(subs(f,tao,x_of_f));% 将tao替换为x_of_fy_of_f(find(  y_of_f==inf))=1;%将冲激函数中的无穷大改为1xy_tao=f*subs(g2,x,x-tao);%将y中的x用x-tao替换xy=simplify(simplify(int(xy_tao,tao,-100,100)));%卷积过程case 5 %单边指数信号if a1==0msgbox('a can not be zero,due to some reasons that exsit on sources codes','warn','warn');returnenda10=a1;
b10=b1;
x1_start=-3; 
x1_end=3;
f=@(t)  (a10*exp(-abs(b10).*t)).*(t>=0);
x_start=x1_start+t2_start-3;
x_end=x1_end+t2_end+3;
y_start=min((a1<0)*a1*b2,a1*b2*(a1>0));
y_end=max((a1<0)*a1*b2,a1*b2*(a1>0));case 6 %单边正弦波if a2==0msgbox('a can not be zero,due to some reasons that exsit on sources codes','warn','warn');returnenda10=a1;
b10=b1;
x1_start=-pi/abs(a10)  ;  
x1_end=3*pi/abs(a10) ;
f=@(t)  sin(a10.*t+b10).*(t>=0);
x_start=x1_start+t2_start-3;
x_end=x1_end+t2_end+3;
y_start=-3;
y_end=3;
end
case 2   %函数y图形三角函数syms x g2;t2_start=a2-b2/2;
t2_end=a2+b2/2;
t2_center=a2;
t2_width=b2;
a=t2_center;
b=t2_width;
g=@(t) ((2/b).*t-(2*a/b)+1).*(t>=t2_start&t<=t2_center)+((-2/b).*t+(2*a/b)+1).*(t>t2_center&t<=t2_end);g2=(heaviside(x-(a2-b2/2))-heaviside(x-a2))*(x-(a2-b2/2))*2/b2+(heaviside(x-a2)-heaviside(x-(a2+b2/2)))*(-x+(a2+b2/2))*2/b2;
switch choose1 %函数x图形(f表示)case 1 %门函数if b1<=0msgbox('b should be positive','warn','warn');returnend
t1_start=a1-b1/2;
t1_end=a1+b1/2;
x_start=t1_start+t2_start-3;
x_end=t1_end+t2_end+3;
f=@(t) (t.*0+1).*(t>=t1_start&t<=t1_end)+0;%使用函数句柄定义门函数,门高为1
y_start=-0.5;
if (b2/2)>b1y_end=b1*1.1;
elsey_end=(b2/2)*1.1;
end
case 2 %三角函数if b1<=0msgbox('b should be positive','warn','warn');returnendt1_start=a1-b1/2;
t1_end=a1+b1/2;
x_start=t1_start+t2_start-3;
x_end=t1_end+t2_end+3;
y_start=-0.5;
if (b2/2)>(b1/2)y_end=(b1/2)*1.1;
elsey_end=(b2/2)*1.1;
end
t1_center=a1;
t1_width=b1;
a=t1_center;
b=t1_width;
f=@(t) ((2/b).*t-(2*a/b)+1).*(t>=t1_start&t<=t1_center)+((-2/b).*t+(2*a/b)+1).*(t>t1_center&t<=t1_end);case 3 %阶跃函数if a1==0msgbox('a can not be zero','warn','warn');returnend
x1_start=b1/a1-3;  
x1_end=b1/a1+3; %阶跃函数左右边界
a=a1;
b=b1;
f=@(t) (t.*0+1).*((a.*t-b)>=0);
x_start=x1_start+t2_start-3;
x_end=x1_end+t2_end+3;
y_start=-0.5;
y_end=(b2/2)*1.1;
case 4 %冲激函数if a1==0msgbox('a can not be zero','warn','warn');returnendsyms f;syms tao;f=dirac(a1*tao-b1);  %定义冲激函数x1_start=b1/a1-3;  
x1_end=b1/a1+3;  %冲激函数左右边界
x_start=x1_start+t2_start-3;
x_end=x1_end+t2_end+3;
y_start=-0.5;
if abs(a1)>1y_end=1.1;
else
y_end=round(1/abs(a1),1)*1.1;
endx_of_f=x_start:0.01:x_end;%定义时间向量y_of_f=double(subs(f,tao,x_of_f));% 将tao替换为x_of_fy_of_f(find(  y_of_f==inf))=1;%将冲激函数中的无穷大改为1xy_tao=f*subs(g2,x,x-tao);%将y中的x用x-tao替换xy=simplify(simplify(int(xy_tao,tao,-100,100)));%卷积过程case 5 %单边指数信号if a1==0msgbox('a can not be zero,due to some reasons that exsit on sources codes','warn','warn');returnenda10=a1;
b10=b1;
x1_start=-3; 
x1_end=3;
f=@(t)  (a10*exp(-abs(b10).*t)).*(t>=0);
x_start=x1_start+t2_start-3;
x_end=x1_end+t2_end+3;
y_start=min((a1<0)*a1*(b2/2),a1*(b2/2)*(a1>0));
y_end=max((a1<0)*a1*(b2/2),a1*(b2/2)*(a1>0));case 6 %单边正弦波if a2==0msgbox('a can not be zero,due to some reasons that exsit on sources codes','warn','warn');returnenda10=a1;
b10=b1;
x1_start=-pi/abs(a10)  ;  
x1_end=3*pi/abs(a10) ;
f=@(t)  sin(a10.*t+b10).*(t>=0);
x_start=x1_start+t2_start-3;
x_end=x1_end+t2_end+3;
y_start=-3;
y_end=3;
end
case 3 %函数y图形阶跃函数syms x g2;x2_start=b2/a2-3;  
x2_end=b2/a2+3;
a=a2;
b=b2;
g=@(t) (t.*0+1).*((a.*t-b)>=0);
g2=heaviside(a2*x-b2);
switch choose1 %函数x图形(f表示)case 1 %门函数if b1<=0msgbox('b should be positive','warn','warn');returnend
t1_start=a1-b1/2;
t1_end=a1+b1/2;
x_start=t1_start+x2_start-3;
x_end=t1_end+x2_end+3;
y_start=-0.5;
y_end=b1*1.1;
f=@(t) (t.*0+1).*(t>=t1_start&t<=t1_end)+0;%使用函数句柄定义门函数,门高为1case 2 %三角函数if b1<=0msgbox('b should be positive','warn','warn');returnendt1_start=a1-b1/2;
t1_end=a1+b1/2;
x_start=t1_start+x2_start-3;
x_end=t1_end+x2_end+3;
y_start=-0.5;
y_end=(b1/2)*1.1;
t1_center=a1;
t1_width=b1;
a=t1_center;
b=t1_width;
f=@(t) ((2/b).*t-(2*a/b)+1).*(t>=t1_start&t<=t1_center)+((-2/b).*t+(2*a/b)+1).*(t>t1_center&t<=t1_end);case 3 %阶跃函数if a1==0msgbox('a can not be zero','warn','warn');returnend
x1_start=b1/a1-3;  
x1_end=b1/a1+3; %阶跃函数左右边界
a=a1;
b=b1;
f=@(t) (t.*0+1).*((a.*t-b)>=0);
x_start=x1_start+x2_start-3;
x_end=x1_end+x2_end+3;
y_start=-0.5;
y_end=10;case 4 %冲激函数if a1==0msgbox('a can not be zero','warn','warn');returnendsyms f;syms tao;f=dirac(a1*tao-b1);  %定义冲激函数x1_start=b1/a1-3;  
x1_end=b1/a1+3;  %冲激函数左右边界
x_start=x1_start+x2_start-3;
x_end=x1_end+x2_end+3;
y_start=-0.5;
if abs(a1)>1y_end=1.1;
else
y_end=round(1/abs(a1),1)*1.1;
end
x_of_f=x_start:0.01:x_end;%定义时间向量y_of_f=double(subs(f,tao,x_of_f));% 将tao替换为x_of_fy_of_f(find(  y_of_f==inf))=1;%将冲激函数中的无穷大改为1xy_tao=f*subs(g2,x,x-tao);%将y中的x用x-tao替换xy=simplify(simplify(int(xy_tao,tao,-100,100)));%卷积过程case 5 %单边指数信号if a1==0msgbox('a can not be zero,due to some reasons that exsit on sources codes','warn','warn');returnenda10=a1;
b10=b1;
x1_start=-3; 
x1_end=3;
f=@(t)  (a10*exp(-abs(b10).*t)).*(t>=0);
x_start=x1_start+x2_start-3;
x_end=x1_end+x2_end+3;
y_start=min((a1<0)*a1*2,a1*2*(a1>0));
y_end=max((a1<0)*a1*2,a1*2*(a1>0));case 6 %单边正弦波if a2==0msgbox('a can not be zero,due to some reasons that exsit on sources codes','warn','warn');returnenda10=a1;
b10=b1;
x1_start=-pi/abs(a10)  ;  
x1_end=3*pi/abs(a10) ;
f=@(t)  sin(a10.*t+b10).*(t>=0);
x_start=x1_start+x2_start-3;
x_end=x1_end+x2_end+3;
y_start=-3;
y_end=3;
endcase 4 %函数y图形冲激函数syms t f tao g2 x;t2_start=b2/a2-3;t2_end=b2/a2+3;g2=dirac(a2*x-b2);switch choose1  %函数x图形(f表示)case 1  if b1<=0msgbox('b should be positive','warn','warn');returnend
t1_start=a1-b1/2;
t1_end=a1+b1/2;
x_start=t1_start+t2_start;
x_end=t1_end+t2_end;
y_start=-0.5;
if abs(a2)>1y_end=1.1;
else
y_end=round(1/abs(a2),1)*1.1;
endf=heaviside(tao-(a1-b1/2))-heaviside(tao-(a1+b1/2));%利用阶跃函数构建门函数xy_tao=f*subs(g2,x,x-tao);%将y中的x用x-tao替换xy=simplify(simplify(int(xy_tao,tao,-100,100)));%卷积过程case  2if b1<=0msgbox('b should be positive','warn','warn');returnendt1_start=a1-b1/2;
t1_end=a1+b1/2;
x_start=t1_start+t2_start;
x_end=t1_end+t2_end;
y_start=-0.5;
if abs(a2)>1y_end=1.1;
else
y_end=round(1/abs(a2),1)*1.1;
endf=(heaviside(tao-(a1-b1/2))-heaviside(tao-a1))*(tao-(a1-b1/2))*2/b1+(heaviside(tao-a1)-heaviside(tao-(a1+b1/2)))*(-tao+(a1+b1/2))*2/b1;%利用阶跃函数构建三角函数xy_tao=f*subs(g2,x,x-tao);%将y中的x用x-tao替换xy=simplify(simplify(int(xy_tao,tao,-100,100)));%卷积过程case 3if a1==0msgbox('a can not be zero','warn','warn');returnend
x1_start=b1/a1-3;  
x1_end=b1/a1-3; %阶跃函数左右边界
if abs(a2)>1y_end=1.1;
else
y_end=round(1/abs(a2),1)*1.1;end
y_start=-0.5;f=heaviside(a1*tao-b1);%阶跃函数表达式x_start=x1_start+t2_start;
x_end=x1_end+t2_end;
xy_tao=f*subs(g2,x,x-tao);%将y中的x用x-tao替换xy=simplify(simplify(int(xy_tao,tao,-100,100)));%卷积过程case 4if a1==0msgbox('a can not be zero','warn','warn');returnendx1_start=b1/a1-3;  
x1_end=b1/a1+3;  %冲激函数左右边界
x_start=x1_start+t2_start;
x_end=x1_end+t2_end;
if abs(a2)>1y_end=1.1;
else
y_end=round(1/abs(a2),1)*1.1;
end
y_start=-0.5;f=dirac(a1*tao-b1);%冲激函数表达式xy_tao=f*subs(g2,x,x-tao);%将y中的x用x-tao替换xy=simplify(simplify(int(xy_tao,tao,-100,100)));%卷积过程case 5 %单边指数信号if a1==0msgbox('a can not be zero,due to some reasons that exsit on sources codes','warn','warn');returnendx1_start=-3; 
x1_end=3;
x_start=x1_start+t2_start;
x_end=x1_end+t2_end;
if abs(a2)>1y_start=-abs(a1);y_end=abs(a1);
elsey_start=-abs(a1)/abs(a2);y_end=abs(a1)/abs(a2);
endf= a1*exp(-abs(b1)*tao)*heaviside(tao);xy_tao=f*subs(g2,x,x-tao);%将y中的x用x-tao替换xy=simplify(simplify(int(xy_tao,tao,-100,100)));%卷积过程case 6 %单边正弦波if a2==0msgbox('a can not be zero,due to some reasons that exsit on sources codes','warn','warn');returnendx1_start=round(-pi/abs(a1) ,2) ;  
x1_end=round(3*pi/abs(a1),2) ;
x_start=x1_start+t2_start;
x_end=x1_end+t2_end;
if abs(a2)>1y_start=-3;y_end=3;
elsey_start=-(1/abs(a2))*1.1;y_end=(1/abs(a2))*1.1;
endf=sin(a1*tao+b1)*heaviside(tao);xy_tao=f*subs(g2,x,x-tao);%将y中的x用x-tao替换xy=simplify(simplify(int(xy_tao,tao,-100,100)));%卷积过程endcase  5 %函数y图形单边指数函数t2_start=-3;  %限定x坐标轴范围
t2_end=3;
a=a2;
b=b2;
g=@(t)  (a*exp(-abs(b).*t)).*(t>=0);
syms g2 x;g2=a2*exp(-abs(b2)*x)*heaviside(x);switch choose1 %函数x图形(f表示)case 1 %门函数if b1<=0msgbox('b should be positive','warn','warn');returnend
t1_start=a1-b1/2;
t1_end=a1+b1/2;
x_start=t1_start+t2_start-3;
x_end=t1_end+t2_end+3;
y_start=min((a2<0)*a2*b1,a2*b1*(a2>0));
y_end=max((a2<0)*a2*b1,a2*b1*(a2>0));
f=@(t) (t.*0+1).*(t>=t1_start&t<=t1_end)+0;%使用函数句柄定义门函数,门高为1case 2 %三角函数if b1<=0msgbox('b should be positive','warn','warn');returnendt1_start=a1-b1/2;
t1_end=a1+b1/2;
x_start=t1_start+t2_start-3;
x_end=t1_end+t2_end+3;
y_start=min((a2<0)*a2*(b1/2),a2*(b1/2)*(a2>0));
y_end=max((a2<0)*a2*(b1/2),a2*(b1/2)*(a2>0));
t1_center=a1;
t1_width=b1;
a=t1_center;
b=t1_width;
f=@(t) ((2/b).*t-(2*a/b)+1).*(t>=t1_start&t<=t1_center)+((-2/b).*t+(2*a/b)+1).*(t>t1_center&t<=t1_end);case 3 %阶跃函数if a1==0msgbox('a can not be zero','warn','warn');returnend
x1_start=b1/a1-3;  
x1_end=b1/a1+3; %阶跃函数左右边界
a=a1;
b=b1;
f=@(t) (t.*0+1).*((a.*t-b)>=0);
x_start=x1_start+t2_start-3;
x_end=x1_end+t2_end+3;
y_start=-abs(a2);
y_end=abs(a2);case 4 %冲激函数if a1==0msgbox('a can not be zero','warn','warn');returnendsyms f;syms tao;f=dirac(a1*tao-b1);  %定义冲激函数x1_start=b1/a1-3;  
x1_end=b1/a1+3;  %冲激函数左右边界
x_start=x1_start+t2_start-3;
x_end=x1_end+t2_end+3;
if abs(a1)>1y_start=-abs(a2);y_end=abs(a2);
elsey_start=-abs(a2)/abs(a1);y_end=abs(a2)/abs(a1);
end
x_of_f=x_start:0.01:x_end;%定义时间向量y_of_f=double(subs(f,tao,x_of_f));% 将tao替换为x_of_fy_of_f(find(  y_of_f==inf))=1;%将冲激函数中的无穷大改为1xy_tao=f*subs(g2,x,x-tao);%将y中的x用x-tao替换xy=simplify(simplify(int(xy_tao,tao,-100,100)));%卷积过程case 5 %单边指数信号if a1==0msgbox('a can not be zero,due to some reasons that exsit on sources codes','warn','warn');returnenda10=a1;
b10=b1;
x1_start=-3; 
x1_end=3;
f=@(t)  (a10*exp(-abs(b10).*t)).*(t>=0);
x_start=x1_start+t2_start-3;
x_end=x1_end+t2_end+3;
top=abs(a1)+abs(a2);
y_start=-top;
y_end=top;case 6 %单边正弦波if a2==0msgbox('a can not be zero,due to some reasons that exsit on sources codes','warn','warn');returnenda10=a1;
b10=b1;
x1_start=-pi/abs(a10)  ;  
x1_end=3*pi/abs(a10) ;
f=@(t)  sin(a10.*t+b10).*(t>=0);
x_start=x1_start+t2_start-3;
x_end=x1_end+t2_end+3;
y_start=-3;
y_end=3;
end
case 6 %函数y图形单边正弦波syms g2 x;g2=sin(a2*x+b2)*heaviside(x);
t2_start=round(-pi/abs(a2),2)  ;  
t2_end=round(3*pi/abs(a2),2) ;
g=@(t)  sin(a2.*t+b2).*(t>=0);switch choose1 %函数x图形(f表示)case 1 %门函数if b1<=0msgbox('b should be positive','warn','warn');returnend
t1_start=a1-b1/2;
t1_end=a1+b1/2;
x_start=t1_start+t2_start-3;
x_end=t1_end+t2_end+3;
y_start=-3;
y_end=3;
f=@(t) (t.*0+1).*(t>=t1_start&t<=t1_end)+0;%使用函数句柄定义门函数,门高为1case 2 %三角函数if b1<=0msgbox('b should be positive','warn','warn');returnendt1_start=a1-b1/2;
t1_end=a1+b1/2;
x_start=t1_start+t2_start-3;
x_end=t1_end+t2_end+3;
y_start=-3;
y_end=3;
t1_center=a1;
t1_width=b1;
a=t1_center;
b=t1_width;
f=@(t) ((2/b).*t-(2*a/b)+1).*(t>=t1_start&t<=t1_center)+((-2/b).*t+(2*a/b)+1).*(t>t1_center&t<=t1_end);case 3 %阶跃函数if a1==0msgbox('a can not be zero','warn','warn');returnend
x1_start=b1/a1-3;  
x1_end=b1/a1+3; %阶跃函数左右边界
a=a1;
b=b1;
f=@(t) (t.*0+1).*((a.*t-b)>=0);
x_start=x1_start+t2_start-3;
x_end=x1_end+t2_end+3;
y_start=-3;
y_end=3;case 4 %冲激函数if a1==0msgbox('a can not be zero','warn','warn');returnendsyms f;syms tao;f=dirac(a1*tao-b1);  %定义冲激函数x1_start=b1/a1-3;  
x1_end=b1/a1+3;  %冲激函数左右边界
x_start=x1_start+t2_start-3;
x_end=x1_end+t2_end+3;
y_start=-3;
y_end=3;
x_of_f=x_start:0.01:x_end;%定义时间向量y_of_f=double(subs(f,tao,x_of_f));% 将tao替换为x_of_fy_of_f(find(  y_of_f==inf))=1;%将冲激函数中的无穷大改为1xy_tao=f*subs(g2,x,x-tao);%将y中的x用x-tao替换xy=simplify(simplify(int(xy_tao,tao,-100,100)));%卷积过程case 5 %单边指数信号if a1==0msgbox('a can not be zero,due to some reasons that exsit on sources codes','warn','warn');returnenda10=a1;
b10=b1;
x1_start=-3; 
x1_end=3;
f=@(t)  (a10*exp(-abs(b10).*t)).*(t>=0);
x_start=x1_start+t2_start-3;
x_end=x1_end+t2_end+3;
y_start=-3;
y_end=3;case 6 %单边正弦波if a2==0msgbox('a can not be zero,due to some reasons that exsit on sources codes','warn','warn');returnenda10=a1;
b10=b1;
x1_start=-pi/abs(a10)  ;  
x1_end=3*pi/abs(a10) ;
f=@(t)  sin(a10.*t+b10).*(t>=0);
x_start=x1_start+t2_start-3;
x_end=x1_end+t2_end+3;
y_start=-3;
y_end=3;
end
end 
if choose2 ==4syms g g3 tao x;x_of_g=x_start:0.01:x_end;axes(handles.axes3);cla reset;grid on;hold on;%坐标轴范围axis([x_start x_end y_start y_end]);fplot(f,[x_start x_end ]);H=round(b2/a2,2);g=dirac(x-tao-H); %定义冲激函数g3=subs(g,tao,x_of_g);for  t=x_start:0.01:x_end
y_of_g=subs(g3,x,t);y_of_g(find(y_of_g==inf))=1;y_of_g_plot=plot(x_of_g,y_of_g,'r');res=double(subs(xy,x,t));plot(t,res,'.');pause(0.1);if flag ==0uiwait(handles.figure1);end
delete(y_of_g_plot);endreturn
end
if choose1 == 4  %冲激函数另作讨论x_of_g=x_start:0.01:x_end; %定义函数y时间向量axes(handles.axes3);cla reset; %清空坐标系hold  on;   %将多张图绘到一个坐标系上grid on;plot(x_of_f,y_of_f,'b');  %绘制x(tao)%坐标轴范围
axis([x_start x_end  y_start y_end]);
for t=x_start:0.01:x_endy_of_g=g(t-x_of_g);y_of_g_plot=plot(x_of_g,y_of_g,'r');  %绘制y(t-tao)pause(0.1);  %暂定目的看清绘制过程res=double(subs(xy,x,t));  %卷积xy中x用数值t替代plot(t,res,'.');   %绘制卷积结果,注意是一个又一个点if flag ==0uiwait(handles.figure1);enddelete(y_of_g_plot);
endreturn
end
%一般情况
x_of_f=x_start:0.01:x_end;  %定义函数x时间向量
y_of_f=f(x_of_f);   %得到x的纵坐标
x_of_g=x_start:0.01:x_end;   %定义函数y时间向量axes(handles.axes3);cla reset;  %清空坐标系hold  on;   %将多张图绘到一个坐标系上grid on;plot(x_of_f,y_of_f,'b');%绘制x(tao)%坐标轴范围
axis([x_start x_end  y_start y_end]);
for t=x_start:0.01:x_endy_of_g=g(t-x_of_g);  y_of_g_plot=plot(x_of_g,y_of_g,'r');  %绘制y(t-tao)pause(0.1);  %暂定目的看清绘制过程sum=0;  %求卷积积分for tao=x_start:0.01:x_endsum=sum+0.01*f(tao)*g(t-tao);  %乘以0.01目的,归一化endplot(t,sum,'.');   %绘制卷积结果,注意是一个又一个点if flag ==0uiwait(handles.figure1);enddelete(y_of_g_plot);
end% --- Executes on button press in pushbutton4.
function pushbutton4_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton4 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)% --- 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 = cellstr(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 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 && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))set(hObject,'BackgroundColor','white');
endfunction edit1_Callback(hObject, eventdata, handles)
% hObject    handle to edit1 (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 edit1 as text
%        str2double(get(hObject,'String')) returns contents of edit1 as a double% --- Executes during object creation, after setting all properties.
function edit1_CreateFcn(hObject, eventdata, handles)
% hObject    handle to edit1 (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 && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))set(hObject,'BackgroundColor','white');
end
function edit2_Callback(hObject, eventdata, handles)
% hObject    handle to edit2 (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 edit2 as text
%        str2double(get(hObject,'String')) returns contents of edit2 as a double
% --- Executes during object creation, after setting all properties.
function edit2_CreateFcn(hObject, eventdata, handles)
% hObject    handle to edit2 (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 && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))set(hObject,'BackgroundColor','white');
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 = cellstr(get(hObject,'String')) returns popupmenu2 contents as cell array
%        contents{get(hObject,'Value')} returns selected item from popupmenu2
% --- 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 && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))set(hObject,'BackgroundColor','white');
end
function edit3_Callback(hObject, eventdata, handles)
% hObject    handle to edit3 (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 edit3 as text
%        str2double(get(hObject,'String')) returns contents of edit3 as a double
% --- Executes during object creation, after setting all properties.
function edit3_CreateFcn(hObject, eventdata, handles)
% hObject    handle to edit3 (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 && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))set(hObject,'BackgroundColor','white');
end
function edit4_Callback(hObject, eventdata, handles)
% hObject    handle to edit4 (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 edit4 as text
%        str2double(get(hObject,'String')) returns contents of edit4 as a double
% --- Executes during object creation, after setting all properties.
function edit4_CreateFcn(hObject, eventdata, handles)
% hObject    handle to edit4 (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 && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))set(hObject,'BackgroundColor','white');
end
% --- Executes on button press in pushbutton5.
function pushbutton5_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton5 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
global flag;
str=get(handles.pushbutton5,'String');
if isequal(str,'pause')flag=0;set(handles.pushbutton5,'String','continue');
elseflag=1;uiresume(handles.figure1);set(handles.pushbutton5,'String','pause');
end

三.界面布局

在这里插入图片描述
三个按钮从上到下依次为:
函数x图形:pushbutton1
函数y图形:pushbutton2
运算:pushbutton3
pause:pushbutton5
可编辑文本框从上到下依次为
edit1
edit2
edit3
edit4
下拉菜单从上到下依次为
popupmenu1
popupmenu2
其余为静态文本框
下载代码链接:
点击下载代码

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/261449.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

sql2005备份还原详解

1、备份 点击要备份的数据库右键-任务-备份 备份类型&#xff1a;完整 2、还原 点击数据库右键-还原数据库 目标数据库&#xff1a;&#xff08;数据库名&#xff09; 选择 原设备&#xff1a;&#xff08;你备份的xxx.bak文件&#xff09; 在选…

python爬虫框架怎么安装_celery如何在python爬虫中安装?

在我们学习了不少关于celery框架的知识后&#xff0c;很多小伙伴已经想要正式使用celery了。这里小编也不知道大家安装好了celery没有~为了照顾一下动手能力不太强的python小白&#xff0c;小编把celery框架安装的方法整理了出来&#xff0c;没有安装成功的小伙伴也可以参考一下…

codeforces C. Diverse Permutation(构造)

题意&#xff1a;1...n 的全排列中 p1, p2, p3....pn中&#xff0c;找到至少有k个|p1-p2| , |p2-p3|, ...|pn-1 - pn| 互不相同的元素&#xff01; 思路&#xff1a; 保证相邻的两个数的差值的绝对值为单调递减序列..... 如果够k个了&#xff0c;最后将没有访问到的元素直接添加…

(转)父子节点遍历

原创作品&#xff0c;允许转载&#xff0c;转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。http://qianzhang.blog.51cto.com/317608/1205679 对于树/图的遍历&#xff0c;通常有2种算法来实现&#xff1a;迭代(Iteration)和递归(Recursi…

SharePoint 2007 做Migration后用户处理

新公司的一部分任务是做Migration&#xff0c;从用户角度来说分为两种情况&#xff0c;第一种是在同一个Domain下作网站的Migration&#xff0c;另外一种就是在不同Domain下做Migration。在同一Domain下做Migration&#xff0c;User不会出现问题&#xff0c;因为在Import后&…

Ubuntu GNOME 15.10升级16.4LTS

为什么80%的码农都做不了架构师&#xff1f;>>> 当Ubuntu GNOME官方已经发送16.4后&#xff0c;执行以下命令 sudo do-release-upgrade 显示没有新系统更新 在网上找到另一种方法是执行以下命令&#xff1a; sudo ppa-purge ppa:gnome3-team/gnome3-staging sudo p…

matplotlib plot 分组_小白学 Python 数据分析(16):Matplotlib(一)坐标系

人生苦短&#xff0c;我用 Python前文传送门&#xff1a;小白学 Python 数据分析(1)&#xff1a;数据分析基础小白学 Python 数据分析(2)&#xff1a;Pandas (一)概述小白学 Python 数据分析(3)&#xff1a;Pandas (二)数据结构 Series小白学 Python 数据分析(4)&#xff1a;Pa…

hdu 1423 最长公共递增子序列

这题一开始把我给坑了&#xff0c;我还没知道LCIS的算法&#xff0c;然后就慢慢搞吧&#xff0c;幸运的是还真写出来了&#xff0c;只不过麻烦了一点。 我是将该题转换为多条线段相交&#xff0c;然后找出最多多少条不相交&#xff0c;并且其数值死递增的。 代码如下&#xff1…

安卓从业者应该关注:Android 6.0的运行时权限

Android 6.0&#xff0c;代号棉花糖&#xff0c;自发布伊始&#xff0c;其主要的特征运行时权限就很受关注。因为这一特征不仅改善了用户对于应用的使用体验&#xff0c;还使得应用开发者在实践开发中需要做出改变。 没有深入了解运行时权限的开发者通常会有很多疑问&#xff0…

git把另一个盘的代码上传_如何使用Git上传代码到GitHub

初始化Git1. 安装Git客户端一路下一步下一步既可2. 配置Git1. 在电脑硬盘里找一块地方存放本地仓库,右键Git Bash进入git命令行执行如下代码 生成.git文件夹,表示本地git创建成功git config --global user.name "littonishir"git config --global user.email "l…

sh脚本学习之: sh脚本 、sed、awk

sh脚本 sh命令的批处理文件&#xff0c;支持更复杂的逻辑。  Shell中的变量 参数   $0  当前脚本路径 $1....$n  脚本执行对应的第n个参数 条件判断   文件判断 test [op] path e存在  f是文件  d是目录  r可读  w可写  x可执行   if判断/case if[条件判…

Silverlight OOB Setup

Sl的安装大家都知道&#xff1a;在程序点右键&#xff0c;选择安装。有没有另外一种方法&#xff0c;类似普通软件那样&#xff0c;通过安装包安装&#xff1f;答案当然是 有参考&#xff1a;http://www.code Technorati 标签: project.com/KB/install/slsetup.aspx思路很简单&…

2016-04-29 二分查找的面试题

为什么80%的码农都做不了架构师&#xff1f;>>> 1.面试题 例如&#xff1a; ip计算后的值&#xff1d;53文本内容&#xff1a;1,100,北京 101,1000,上海 1001,3001,广州 ...求ip53对应的省份2.代码如下&#xff1a; #!/usr/bin/python # coding: utf8def ip_find(i…

gettype拿不到值_王者荣耀:被低估的强势打野,就是这位拿大锤子的阿姨!

王者峡谷的小伙伴你们好&#xff0c;今天就为你们推荐一下这位野区女霸主钟无艳&#xff0c;不仅高伤害而且操作简单&#xff01;版本更新在5月14日版本更新中&#xff0c;钟无艳的三个技能都被加强了&#xff0c;所有的蓝耗都被固定&#xff0c;不再随技能等级的成长值&#x…

如何培训

Ground roles 1>No phone,no computer.2>没有私下讨论 3>parkng Lot 1. 演讲技巧 2. 隐喻 说服别人时&#xff0c;讲故事&#xff0c;举例子 3. 问题回答 4. 会场设置 转载于:https://www.cnblogs.com/myfav/p/3176621.html

【笔记】MATLAB中的图形(2)

三维作图 1、mesh(z)语句 mesh(z)语句可以给出矩阵z元素的三维消隐图&#xff0c;网络表面由z坐标点定义&#xff0c;与前面叙述的x-y平面的线格相同&#xff0c;图形由临近的点连接而成。它可用来显示用其他方式难以输出的包含大量数据的大型矩阵&#xff0c;也可以用来绘制z变…

Kindeditor放置两个调用readonly错误

开始 需要调用Kindeditor中的readonly的方法&#xff0c;但是一直提示edit is undefined 而editor.readonly(true)又只对第一个对象有效 所以只能换换形式&#xff0c;干脆将下面的kindeditor拿上来 虽然是满足自己这个需求&#xff0c;但是真正的原因解决办法&#xff0c;还是…

acl在内核里的位置_Linux 进程在内核眼中是什么样子的?

本篇算是进程管理的的揭幕篇&#xff0c;简单介绍一个进程在内核眼里的来龙去脉&#xff0c;为接下来的进程创建&#xff0c;进程调度&#xff0c;进程管理等篇章做好学习准备。从程序到进程再到内核啥是程序&#xff0c;啥是进程&#xff0c;一张图可以给我们解释&#xff1a;…

majikan

转载于:https://www.cnblogs.com/YOUEN/p/3179091.html

sql语句查询数据库返回结果转换显示自定义字段

在开发中经常遇到在数据中用单字符保存数据对应简单信息&#xff0c;比如性别、状态、与否等。如果要求在绑定数据源并显示对应字段&#xff0c;比如性别&#xff1a;1表示男&#xff0c;0表示女&#xff1b;状态&#xff1a;1表示有效&#xff0c;0表示失效等等。简单一句sql语…