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

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

?? radarsimulation.m

?? 模擬雷達
?? 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一区二区三区免费野_久草精品视频
国产精品嫩草影院com| 日韩免费一区二区三区在线播放| 麻豆成人久久精品二区三区红| ㊣最新国产の精品bt伙计久久| 久久久久成人黄色影片| 日韩午夜三级在线| 91精品在线观看入口| 欧美精品一级二级三级| 欧美性猛交xxxxxxxx| 色婷婷狠狠综合| 色狠狠一区二区三区香蕉| 成人aaaa免费全部观看| 国产91在线看| 99麻豆久久久国产精品免费优播| 不卡av免费在线观看| 国产经典欧美精品| 成人综合婷婷国产精品久久| 国产精品综合一区二区| 国产99久久久精品| 91丨九色丨国产丨porny| 成人av网站免费观看| 在线免费观看一区| 91精品国产高清一区二区三区蜜臀| 欧美日韩成人综合| 欧美mv日韩mv亚洲| 亚洲国产精品v| 亚洲人成网站影音先锋播放| 亚洲午夜电影网| 国产成人午夜高潮毛片| 欧美私模裸体表演在线观看| 精品欧美乱码久久久久久| 国产精品久久看| 亚洲成人在线网站| 国产精品综合视频| 欧美日韩中文国产| 亚洲国产视频在线| 狠狠色丁香婷婷综合| 91亚洲精品久久久蜜桃| 欧美日本免费一区二区三区| 日本一区二区三区高清不卡| 一区二区三区四区在线| 久久成人av少妇免费| 不卡的av网站| 26uuu国产在线精品一区二区| 亚洲另类色综合网站| 国产精品一区二区三区乱码| 欧美无乱码久久久免费午夜一区| 久久网这里都是精品| 五月综合激情网| 色综合亚洲欧洲| 欧美一区二区三区小说| 亚洲国产精品传媒在线观看| 日本最新不卡在线| 91美女在线看| 国产精品午夜电影| 精品夜夜嗨av一区二区三区| 欧美日韩国产精品成人| 亚洲成人一区在线| 欧美中文字幕久久| 一区二区三区在线播放| 日本电影欧美片| 亚洲卡通动漫在线| 欧美羞羞免费网站| 亚洲国产精品一区二区尤物区| 日本高清不卡视频| 亚洲aⅴ怡春院| 91精品久久久久久蜜臀| 日韩精品久久理论片| 日韩欧美你懂的| 国产suv精品一区二区6| 亚洲色图.com| 欧美唯美清纯偷拍| 日韩高清电影一区| 久久久噜噜噜久久中文字幕色伊伊| 国产自产v一区二区三区c| 色综合久久天天| 欧美一区二区三区视频免费播放| 午夜久久久久久久久久一区二区| 欧美精选一区二区| 国产成人亚洲综合色影视| 国产欧美精品在线观看| 日本高清不卡视频| 麻豆91小视频| 亚洲精品国产a久久久久久| 欧美性淫爽ww久久久久无| 日本va欧美va欧美va精品| 久久久久久一二三区| 一本色道久久加勒比精品| 婷婷久久综合九色综合伊人色| 日韩一区二区电影| 97久久超碰国产精品| 奇米影视7777精品一区二区| 中文字幕日韩一区二区| 97久久人人超碰| 国产亚洲一区二区三区在线观看| 成人午夜又粗又硬又大| 日韩精品高清不卡| 亚洲另类中文字| 国产亚洲成av人在线观看导航| 欧美性猛交xxxx乱大交退制版| 国产精一品亚洲二区在线视频| 亚洲成人免费在线| 亚洲色大成网站www久久九九| 欧美本精品男人aⅴ天堂| 欧美日韩一区二区三区在线 | 欧美日韩精品一区二区三区四区| 国产91在线看| 不卡的av在线播放| 成熟亚洲日本毛茸茸凸凹| 成人性生交大片免费| 亚洲午夜免费视频| 亚洲一区视频在线| 亚洲精品成人少妇| 亚洲国产日韩在线一区模特| 亚洲视频小说图片| 一个色妞综合视频在线观看| **性色生活片久久毛片| 亚洲乱码中文字幕| 午夜精品福利久久久| 91一区二区在线| 欧美日韩中文国产| 717成人午夜免费福利电影| 91精品国产全国免费观看 | 欧美人牲a欧美精品| 欧美一区二区三区婷婷月色 | 国产成人精品三级麻豆| 成人av在线网| 欧美久久久久久蜜桃| 久久青草国产手机看片福利盒子 | 日韩亚洲欧美中文三级| 国产人成亚洲第一网站在线播放| 国产精品女人毛片| 天天影视涩香欲综合网| 久久福利资源站| 色悠悠久久综合| 欧美成人a在线| 亚洲精品视频观看| 国产不卡一区视频| 欧美久久久影院| 国产精品麻豆欧美日韩ww| 天堂在线亚洲视频| 成人国产精品免费| 国产精品三级电影| 日韩电影在线一区| 精品视频一区三区九区| 亚洲欧美影音先锋| 国产91丝袜在线18| 久久免费国产精品| 美女视频黄免费的久久| 色94色欧美sute亚洲线路一ni| 26uuu欧美日本| 免费成人在线观看视频| 色狠狠一区二区| 国产精品不卡视频| 国产成人鲁色资源国产91色综| 777久久久精品| 亚洲成人自拍偷拍| 色8久久人人97超碰香蕉987| 中文字幕中文字幕一区二区 | 国产视频视频一区| 国产精品白丝jk白祙喷水网站| 欧美卡1卡2卡| 亚洲成人在线网站| 欧美人狂配大交3d怪物一区| 午夜精品久久久久影视| 欧美亚洲国产一卡| 亚洲国产综合视频在线观看| 91久久精品午夜一区二区| 亚洲女人的天堂| 欧美无人高清视频在线观看| 午夜日韩在线观看| 日韩三级视频在线看| 国产一区二三区好的| 在线播放91灌醉迷j高跟美女| 成人看片黄a免费看在线| 精品国产乱码久久久久久久久| 日韩av一级电影| 日韩一级大片在线| 经典三级视频一区| 久久天堂av综合合色蜜桃网| 国产精品一区二区久久不卡| 欧美激情中文字幕一区二区| 成人一道本在线| 一片黄亚洲嫩模| 日韩精品影音先锋| 成人黄色电影在线| 在线亚洲免费视频| 欧美日韩视频在线一区二区 | 在线观看精品一区| 丝袜美腿亚洲一区二区图片| 国产亚洲欧美日韩日本| 欧美亚洲日本一区| 国产盗摄一区二区三区| 亚洲国产日日夜夜| 国产精品麻豆欧美日韩ww| 7777精品伊人久久久大香线蕉完整版 | 久久精品国产999大香线蕉| 亚洲国产电影在线观看| 91精品国产美女浴室洗澡无遮挡| 国产伦精品一区二区三区视频青涩|