亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? radarsimulation.m

?? 基于matlab GUI界面的雷達仿真代碼 具有豐富的參數選項 如目標個數
?? M
?? 第 1 頁 / 共 2 頁
字號:
function varargout = radarSimulation(varargin)
% RADARSIMULATION M-file for radarSimulation.fig
%      RADARSIMULATION, by itself, creates a new RADARSIMULATION or raises the existing
%      singleton*.
%
%      H = RADARSIMULATION returns the handle to a new RADARSIMULATION or the handle to
%      the existing singleton*.
%
%      RADARSIMULATION('CALLBACK',hObject,eventData,handles,...) calls the local
%      function named CALLBACK in RADARSIMULATION.M with the given input
%      arguments.
%
%      RADARSIMULATION('Property','Value',...) creates a new RADARSIMULATION or raises the
%      existing singleton*.  Starting from the left, property value pairs are
%      applied to the GUI before radarSimulation_OpeningFunction gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to radarSimulation_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 radarSimulation

% Last Modified by GUIDE v2.5 25-Aug-2006 17:34:47

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name',       mfilename, ...
                   'gui_Singleton',  gui_Singleton, ...
                   'gui_OpeningFcn', @radarSimulation_OpeningFcn, ...
                   'gui_OutputFcn',  @radarSimulation_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 radarSimulation is made visible.
function radarSimulation_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 radarSimulation (see VARARGIN)

% Choose default command line output for radarSimulation
handles.output = hObject;
handles.FOV = [];
handles.mountains = [];
handles.IF_Freq = 10e6;    
handles.curentTime = 0;
handles.targetsFigure = [];
handles.Targets = [];
handles.pulseNum = 0;
handles.plotedTargets = [];
plotDistLines(handles.radarDisplay,10);

% Update handles structure
guidata(hObject, handles);

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


% --- Outputs from this function are returned to the command line.
function varargout = radarSimulation_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;



function PRI_Callback(hObject, eventdata, handles)
% hObject    handle to PRI (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 PRI as text
%        str2double(get(hObject,'String')) returns contents of PRI as a double


% --- Executes during object creation, after setting all properties.
function PRI_CreateFcn(hObject, eventdata, handles)
% hObject    handle to PRI (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 ZSA_Callback(hObject, eventdata, handles)
% hObject    handle to ZSA (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 ZSA as text
%        str2double(get(hObject,'String')) returns contents of ZSA as a double


% --- Executes during object creation, after setting all properties.
function ZSA_CreateFcn(hObject, eventdata, handles)
% hObject    handle to ZSA (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 slider movement.
function PW_Callback(hObject, eventdata, handles)
    percent = get(hObject,'value');
    str = ['PW = ' num2str(percent*100) '% of the PRI'];
    set(handles.PWstr,'string',str);
% hObject    handle to PW (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,'Value') returns position of slider
%        get(hObject,'Min') and get(hObject,'Max') to determine range of slider


% --- Executes during object creation, after setting all properties.
function PW_CreateFcn(hObject, eventdata, handles)
% hObject    handle to PW (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: slider controls usually have a light gray background, change
%       'usewhitebg' to 0 to use default.  See ISPC and COMPUTER.
usewhitebg = 1;
if usewhitebg
    set(hObject,'BackgroundColor',[.9 .9 .9]);
else
    set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));
end


% --- Executes on button press in run.
function run_Callback(hObject, eventdata, handles)
    switch get(hObject,'string')
        case 'Pause'
            set(hObject,'string', 'Continue','value',0);
            return;
        case  'Start' 
            handles = createTargets(hObject,handles);
            handles.curentTime = 0;
            set(hObject,'string', 'Pause');
            handles.FOV = [];
            handles.pulseNum = 1;
            guidata(hObject, handles);
            plotDistLines(handles.radarDisplay,10);
            set(handles.nTargets,'enable','off');
            set(handles.RCS,'enable','off');
        case 'Continue'
            set(hObject,'string', 'Pause','value',1);
    end
    runRadarSim(handles,0);

    
% hObject    handle to run (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


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
    set(hObject,'BackgroundColor','white');
else
    set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));
end



function bufferSize_Callback(hObject, eventdata, handles)
% hObject    handle to bufferSize (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 bufferSize as text
%        str2double(get(hObject,'String')) returns contents of bufferSize as a double


% --- Executes during object creation, after setting all properties.
function bufferSize_CreateFcn(hObject, eventdata, handles)
% hObject    handle to bufferSize (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 Amp_Callback(hObject, eventdata, handles)
% hObject    handle to Amp (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 Amp as text
%        str2double(get(hObject,'String')) returns contents of Amp as a double


% --- Executes during object creation, after setting all properties.
function Amp_CreateFcn(hObject, eventdata, handles)
% hObject    handle to Amp (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 Th_Callback(hObject, eventdata, handles)
    Th = get(hObject,'value');
    str = ['Th = ' num2str(10^Th)];
    set(handles.ThStr,'string',str);
% hObject    handle to Th (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 Th as text
%        str2double(get(hObject,'String')) returns contents of Th as a double


% --- Executes during object creation, after setting all properties.
function Th_CreateFcn(hObject, eventdata, handles)
% hObject    handle to Th (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 slider movement.
function MTIsens_Callback(hObject, eventdata, handles)
    v = get(hObject,'value');
    v = round(v*3600/1000);
    str = ['minimum V: ' num2str(v) 'km/hour'];
    set(handles.MTIstr,'string',str);
% hObject    handle to MTIsens (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,'Value') returns position of slider
%        get(hObject,'Min') and get(hObject,'Max') to determine range of slider


% --- Executes during object creation, after setting all properties.
function MTIsens_CreateFcn(hObject, eventdata, handles)
% hObject    handle to MTIsens (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: slider controls usually have a light gray background, change
%       'usewhitebg' to 0 to use default.  See ISPC and COMPUTER.
usewhitebg = 1;
if usewhitebg
    set(hObject,'BackgroundColor',[.9 .9 .9]);
else
    set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));
end



function updateRate_Callback(hObject, eventdata, handles)
% hObject    handle to updateRate (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 updateRate as text
%        str2double(get(hObject,'String')) returns contents of updateRate as a double


% --- Executes during object creation, after setting all properties.
function updateRate_CreateFcn(hObject, eventdata, handles)
% hObject    handle to updateRate (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 selection change in recieveChannelBWType.
function recieveChannelBWType_Callback(hObject, eventdata, handles)
% hObject    handle to recieveChannelBWType (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 recieveChannelBWType contents as cell array
%        contents{get(hObject,'Value')} returns selected item from recieveChannelBWType


% --- Executes during object creation, after setting all properties.
function recieveChannelBWType_CreateFcn(hObject, eventdata, handles)
% hObject    handle to recieveChannelBWType (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: listbox 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 RadarBW_Callback(hObject, eventdata, handles)
% hObject    handle to RadarBW (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 RadarBW as text
%        str2double(get(hObject,'String')) returns contents of RadarBW as a double


% --- Executes during object creation, after setting all properties.
function RadarBW_CreateFcn(hObject, eventdata, handles)

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
韩国女主播成人在线| heyzo一本久久综合| 国产精品一区二区在线观看网站| 99国产精品久| 欧美人与z0zoxxxx视频| 久久精品亚洲国产奇米99| 亚洲欧美国产77777| 另类小说综合欧美亚洲| 色天天综合色天天久久| 日本一区二区电影| 久久www免费人成看片高清| 东方欧美亚洲色图在线| 欧美一区二区免费观在线| 一区二区三区色| 国产成人精品免费视频网站| 日韩午夜在线观看视频| 亚洲综合色成人| 成av人片一区二区| 精品少妇一区二区三区在线视频 | 色8久久人人97超碰香蕉987| 日韩欧美一二三| 午夜欧美2019年伦理| 91理论电影在线观看| 国产欧美va欧美不卡在线| 美女视频一区在线观看| 欧美性猛片aaaaaaa做受| 亚洲日本在线a| 国产高清不卡二三区| 欧美大黄免费观看| 免费国产亚洲视频| 欧美丰满少妇xxxxx高潮对白 | 日韩亚洲欧美一区二区三区| 亚洲高清不卡在线观看| 91蜜桃在线观看| 国产精品视频观看| 国产.欧美.日韩| 国产无遮挡一区二区三区毛片日本| 久久久国际精品| 极品少妇xxxx精品少妇| 精品国产乱码久久久久久图片| 久久精品日产第一区二区三区高清版 | 国产69精品久久久久777| 欧美成人精品二区三区99精品| 亚洲精品一线二线三线无人区| 久久久国产午夜精品 | 中文字幕精品综合| 国产精品2024| 国产精品成人在线观看| 99久久久无码国产精品| 国产精品久久国产精麻豆99网站 | 亚洲第一成人在线| 欧美日本国产一区| 全部av―极品视觉盛宴亚洲| 制服丝袜亚洲网站| 久久精品国产**网站演员| 日韩欧美一区在线| 国产传媒欧美日韩成人| 国产精品免费视频一区| 色综合久久99| 日韩精品久久理论片| 久久夜色精品一区| av一本久道久久综合久久鬼色| 日韩三级免费观看| 精品亚洲国产成人av制服丝袜 | 成人免费av网站| 亚洲激情校园春色| 欧美肥妇bbw| 国产成人精品免费网站| 一区二区三区影院| 日韩视频一区二区| 色综合视频一区二区三区高清| 久久精品视频一区二区三区| 97精品久久久久中文字幕| 午夜精品爽啪视频| 国产欧美日韩精品a在线观看| 狠狠色丁香婷综合久久| 亚洲色图欧美偷拍| 欧美电影免费观看高清完整版在| 亚洲成人精品在线观看| 精品区一区二区| 91小视频在线| 久久精品国产免费看久久精品| 欧美日韩国产a| 国产成人精品免费一区二区| 午夜电影网一区| 中文字幕欧美区| 欧美成人免费网站| 欧美日韩三级视频| av在线播放一区二区三区| 久久99国产精品尤物| 亚洲国产人成综合网站| 中文字幕精品在线不卡| 亚洲精品一区二区三区影院| 99精品视频免费在线观看| 黄色日韩三级电影| 日韩综合一区二区| 亚洲免费观看在线观看| 国产拍揄自揄精品视频麻豆| 精品国产免费人成电影在线观看四季| 全国精品久久少妇| 亚洲a一区二区| 一区视频在线播放| 26uuu欧美日本| 欧美岛国在线观看| 日韩欧美一级精品久久| 欧美精品乱人伦久久久久久| 色婷婷av一区| 欧美在线一二三| 91视频www| 99久久伊人网影院| 成人免费看黄yyy456| 国产乱码字幕精品高清av| 精品一区二区三区香蕉蜜桃| 国产成人在线看| 精油按摩中文字幕久久| 喷水一区二区三区| 日本美女一区二区三区视频| 亚洲国产欧美一区二区三区丁香婷| 欧美巨大另类极品videosbest| 久久精品国产在热久久| 麻豆精品精品国产自在97香蕉| 久久免费视频一区| 久久久亚洲精品一区二区三区| 国产91精品一区二区| 成人精品高清在线| 菠萝蜜视频在线观看一区| 成人黄页毛片网站| 91在线观看污| 91福利国产成人精品照片| 成人aa视频在线观看| 色域天天综合网| 欧美日韩一区小说| 欧美一区二区在线视频| 日韩一区二区精品在线观看| 久久亚洲私人国产精品va媚药| 在线免费一区三区| 欧美少妇xxx| 91精品国产91热久久久做人人| 成人性色生活片| 99视频精品免费视频| 欧美在线观看一区| 91精品国产福利| 国产精品全国免费观看高清 | 91日韩精品一区| 欧美午夜一区二区三区免费大片| 国产综合色在线| 丁香婷婷综合激情五月色| 色视频一区二区| 欧美日本在线观看| 久久久综合视频| 欧美a级一区二区| 国产suv一区二区三区88区| 99精品欧美一区二区蜜桃免费| 国产美女精品人人做人人爽| 国产高清久久久久| 在线中文字幕不卡| 久久久九九九九| 婷婷综合久久一区二区三区| 国产成人精品亚洲日本在线桃色| 九九久久精品视频| 91老师片黄在线观看| 日韩一区二区三区观看| 欧美激情一区不卡| 免费在线观看一区| 日本韩国一区二区三区视频| 精品国产乱码91久久久久久网站| 欧美日韩精品一区视频| 欧美激情艳妇裸体舞| 天使萌一区二区三区免费观看| 一区二区高清视频在线观看| 久久99蜜桃精品| 日本乱码高清不卡字幕| 久久蜜臀精品av| 天天色天天操综合| 一本色道**综合亚洲精品蜜桃冫 | 精品一区二区三区免费| k8久久久一区二区三区| 91.com视频| 亚洲黄网站在线观看| 高清av一区二区| www激情久久| 奇米亚洲午夜久久精品| 欧洲av一区二区嗯嗯嗯啊| 国产精品网曝门| 狠狠色综合播放一区二区| 欧美精品日韩精品| 亚洲国产精品久久人人爱| 99久久综合精品| 国产精品成人免费| 国产成人免费av在线| 久久久久久久久久看片| 国内偷窥港台综合视频在线播放| 国产精品一卡二卡在线观看| 日韩精品一区二区三区视频播放| 精品成人一区二区| 麻豆传媒一区二区三区| 在线播放欧美女士性生活| 亚洲一区二区三区在线看| 色香蕉久久蜜桃| 一区二区三区四区亚洲|