亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
欧美少妇bbb| 国产精品传媒视频| 亚洲国产高清在线观看视频| 亚洲欧美一区二区久久| 久久99精品久久久久久国产越南| 色综合久久综合| 国产三级一区二区| 午夜视频在线观看一区二区三区| av资源站一区| 国产视频在线观看一区二区三区 | 国产日韩三级在线| 秋霞影院一区二区| 欧美精品1区2区| 亚洲成a人片在线不卡一二三区| 大美女一区二区三区| www精品美女久久久tv| 看国产成人h片视频| 欧美日韩国产在线观看| 亚洲一区二区黄色| 91成人免费网站| 亚洲品质自拍视频| 色综合久久天天| 亚洲欧美韩国综合色| 91在线视频官网| 一区二区三区色| 欧美日韩大陆一区二区| 亚洲国产精品自拍| 欧美日韩精品三区| 午夜精品久久久久久久| 91麻豆精品国产91久久久久 | 91久久久免费一区二区| 国产精品国产三级国产有无不卡| 大白屁股一区二区视频| 中文在线免费一区三区高中清不卡| 九九九精品视频| 欧美变态凌虐bdsm| 国产一区二区美女诱惑| 中文字幕不卡的av| 一本大道久久精品懂色aⅴ| 亚洲精品成人在线| 欧美日韩一区二区三区免费看 | 日韩欧美成人午夜| 国产伦精品一区二区三区视频青涩 | 国产精品久久久久久久久免费桃花 | 一区二区三区在线免费视频 | 免费看精品久久片| 26uuu欧美| 成人97人人超碰人人99| 亚洲综合视频网| 日韩欧美综合在线| 国产成人精品网址| 亚洲国产美女搞黄色| 日韩一区二区三区精品视频| 国产一区二区三区精品视频| 中文字幕一区二区三中文字幕| 色国产综合视频| 热久久免费视频| 国产日韩欧美麻豆| 欧美性大战久久久| 国产精品亚洲人在线观看| 亚洲精品综合在线| 欧美videos大乳护士334| 成人动漫在线一区| 婷婷久久综合九色综合绿巨人| 精品入口麻豆88视频| 91丨九色丨尤物| 国内精品免费**视频| 亚洲欧美在线视频| 日韩精品一区二| 色8久久人人97超碰香蕉987| 精品一区二区在线看| 亚洲激情男女视频| 国产日产欧产精品推荐色| 色一情一伦一子一伦一区| 日本不卡123| 一级做a爱片久久| 精品成人a区在线观看| 欧美色视频在线| 粉嫩蜜臀av国产精品网站| 日精品一区二区三区| 1024亚洲合集| 久久精品网站免费观看| 欧美一区二区三区视频免费| 91欧美一区二区| 国产电影一区在线| 裸体在线国模精品偷拍| 亚洲黄色录像片| 国产精品电影院| 国产视频视频一区| 久久综合色综合88| 91精品国产美女浴室洗澡无遮挡| 99re热视频精品| 成人高清伦理免费影院在线观看| 国内不卡的二区三区中文字幕 | 亚洲无线码一区二区三区| 欧美激情在线免费观看| 日韩天堂在线观看| 6080日韩午夜伦伦午夜伦| 欧洲国产伦久久久久久久| 成人h版在线观看| 丁香婷婷综合激情五月色| 国产最新精品精品你懂的| 轻轻草成人在线| 蜜臀99久久精品久久久久久软件 | 亚洲日本电影在线| 国产精品久久久久毛片软件| 国产欧美日韩三区| 国产欧美日韩精品a在线观看| 精品国产一区二区三区忘忧草| 日韩一级二级三级| 精品日韩99亚洲| 精品毛片乱码1区2区3区| 日韩美女主播在线视频一区二区三区| 制服视频三区第一页精品| 51精品视频一区二区三区| 欧美一区二区网站| 精品乱码亚洲一区二区不卡| 欧美日韩在线电影| 亚洲影视在线观看| 自拍偷在线精品自拍偷无码专区 | 裸体一区二区三区| 美女精品一区二区| 国产乱理伦片在线观看夜一区| 国产美女主播视频一区| 高清免费成人av| 91亚洲男人天堂| 欧美日韩黄视频| 日韩欧美一区在线观看| 亚洲国产视频一区二区| 欧洲色大大久久| 欧美日韩一级片网站| 欧美一区二区在线看| 久久综合九色综合97婷婷| 国产日韩欧美精品一区| 亚洲日本va午夜在线电影| 亚洲小说欧美激情另类| 麻豆国产欧美一区二区三区| 国产成人日日夜夜| 日本精品裸体写真集在线观看| 欧美色图在线观看| 日韩免费高清av| 中文字幕制服丝袜成人av| 偷拍亚洲欧洲综合| 国产精品系列在线观看| 色狠狠综合天天综合综合| 日韩免费性生活视频播放| 中文字幕一区二区三区在线观看| 亚洲一区免费在线观看| 国产一区二区三区免费播放| 在线欧美一区二区| 精品不卡在线视频| 亚洲一区二区五区| 激情文学综合插| 色噜噜狠狠色综合中国| 国产精品伦理一区二区| 欧美三级韩国三级日本三斤 | 中文字幕第一区综合| 一区二区成人在线观看| 精品一区二区三区欧美| 色吧成人激情小说| 久久色视频免费观看| 亚洲成人动漫在线观看| 国产成人av自拍| 51久久夜色精品国产麻豆| 国产精品久久久久久久久久久免费看| 亚洲成人av中文| 99久久精品国产导航| 精品国产免费视频| 亚洲成人av免费| 色悠悠久久综合| 国产精品免费人成网站| 韩国v欧美v日本v亚洲v| 这里只有精品视频在线观看| 亚洲人成人一区二区在线观看| 国产一区二区视频在线播放| 欧美精品在线观看一区二区| 亚洲欧美另类久久久精品| 国产成人精品一区二区三区四区 | 精品国产一区二区精华| 亚洲www啪成人一区二区麻豆| 国产一区91精品张津瑜| 欧美一级日韩免费不卡| 亚洲一区二区三区国产| 色婷婷一区二区三区四区| 国产精品国产三级国产| 国产高清不卡一区| 久久精品一区二区三区不卡| 久久精品国产澳门| 日韩美女天天操| 久久99精品久久久久久动态图| 欧美精品在线视频| 日韩av中文字幕一区二区三区| 欧美视频精品在线| 亚洲成人久久影院| 欧美日韩国产高清一区二区三区| 亚洲一区二区美女| 欧美高清dvd| 久久99久久99精品免视看婷婷| 日韩一区二区电影| 国产尤物一区二区在线|