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

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

?? pol_urbmicro.m

?? 程序仿真實現了空間信道性能
?? M
?? 第 1 頁 / 共 5 頁
字號:
% handles    structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of txtU as txtS
%        str2double(get(hObject,'String')) returns contents of txtU as a double


% --- Executes during object creation, after setting all properties.
function txtU_CreateFcn(hObject, eventdata, handles)
% hObject    handle to txtU (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 txtrAS_Callback(hObject, eventdata, handles)
% hObject    handle to txtrAS (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 txtrAS as txtS
%        str2double(get(hObject,'String')) returns contents of txtrAS as a double


% --- Executes during object creation, after setting all properties.
function txtrAS_CreateFcn(hObject, eventdata, handles)
% hObject    handle to txtrAS (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 txtt_Callback(hObject, eventdata, handles)
% hObject    handle to txtt (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 txtt as txtS
%        str2double(get(hObject,'String')) returns contents of txtt as a double


% --- Executes during object creation, after setting all properties.
function txtt_CreateFcn(hObject, eventdata, handles)
% hObject    handle to txtt (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 txtX_Callback(hObject, eventdata, handles)
% hObject    handle to txtX (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 txtX as txtS
%        str2double(get(hObject,'String')) returns contents of txtX as a double


% --- Executes during object creation, after setting all properties.
function txtX_CreateFcn(hObject, eventdata, handles)
% hObject    handle to txtX (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 during object creation, after setting all properties.
function bsantenna_CreateFcn(hObject, eventdata, handles)
% hObject    handle to bsantenna (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% --------------------------------------------------------------------
function bsantenna_SelectionChangeFcn(hObject, eventdata, handles)
% hObject    handle to bsantenna (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 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)


A=get(handles.radiobutton20, 'Value');
if A==1
    BSAP=1;%dipoles
else 
    BSAP=2;%cross dipoles
end

B=get(handles.radiobutton27, 'Value');
if B==1
    MSAP=1;%tilted dipoles
else
    MSAP=2;%cross dipoles
end

valR=str2double(get(handles.txtR,'string'));
if isnan(valR) | valR<=0 | mod(valR,floor(valR))~=0
    errordlg('Wrong Input for parameter R, R must be non zero natural','Error')
    return
end

b=get(handles.radiobutton12, 'Value');
if b==1
    [vald valthetaBS valthetaMS valomegaBS valomegaMS valthetav]=OrientationsFixBS(valR);
else
    vald=str2double(get(handles.resd,'string'));
    if isnan(vald) | vald<=0 | vald>valR
        errordlg('Wrong Input for parameter d, d must be a non zero natural smaller or equal to R','Error')
        return
    end
    valomegaMS=str2double(get(handles.resomegaMS,'string'));
    if isnan(valomegaMS) | valomegaMS<0 | valomegaMS>360
        errordlg('Wrong Input for parameter Omega MS, Omega MS must be positive real smaller than 360','Error')
        return
    end
    valthetaBS=str2double(get(handles.resthetaBS,'string'));
    if isnan(valthetaBS) | valthetaBS<0 | valthetaBS>360
        errordlg('Wrong Input for parameter Theta BS, Theta BS must be positive real smaller than 360','Error')
        return
    end
    valomegaBS=str2double(get(handles.resomegaBS,'string'));
    if isnan(valomegaBS) | valomegaBS<0 | valomegaBS>360
        errordlg('Wrong Input for parameter Omega BS, Omega BS must be positive real smaller than 360','Error')
        return
    end
    valthetav=str2double(get(handles.resthetav,'string'));
    if isnan(valthetav) | valthetav<0 | valthetav>360
        errordlg('Wrong Input for parameter Theta v, Theta v must be positive real smaller than 360','Error')
        return
    end
    valthetaMS=round(abs(valomegaBS-valomegaMS+valthetaBS+180));
end

valaBS=str2double(get(handles.edit42,'string'));
if valaBS<0 | valaBS>90
    errordlg('Wrong Input for parameter aBS, aBS must be greater or equal to zero and smaller or equal to 90','Error')
    return
end

valbMS=str2double(get(handles.edit45,'string'));
if valbMS<0 | valbMS>90
    errordlg('Wrong Input for parameter aBS, aBS must be greater or equal to zero and smaller or equal to 90','Error')
    return
end

valXPDdB=str2double(get(handles.txtXPD,'string'));
if isnan(valXPDdB) | valXPDdB<0 
    errordlg('Wrong Input for parameter XPD, XPD must be a positive real','Error')
    return
end
XPD=10^(valXPDdB/10);
valrn=1/XPD;

valS=str2double(get(handles.txtS,'string'));
if isnan(valS) | valS<=0 | mod(valS,floor(valS))~=0 
    errordlg('Wrong Input for parameter S, S must be non zero natural','Error')
    return
end

valU=str2double(get(handles.txtU,'string'));
if isnan(valU) | valU<=0 | mod(valU,floor(valU))~=0
    errordlg('Wrong Input for parameter U, U must be non zero natural','Error')
    return
end

valdBS=eval(get(handles.txtdBS,'string'));
if length(valdBS)~=(valS-1) & valS~=1
    errordlg('Check the Input distances at the Base Station','Error')
    return
elseif valS==1
    valdBS=0;
end

valdMS=eval(get(handles.txtdMS,'string'));
if length(valdMS)~=(valU-1) & valU~=1
    errordlg('Check the Input distances at the Mobile Station','Error')
    return
elseif valU==1
    valdMS=0;
end

valN=str2double(get(handles.txtN,'string'));
if isnan(valN) | valN<=0 | mod(valN,floor(valN))~=0
    errordlg('Wrong Input for parameter N, N must be non zero natural','Error')
    return
elseif valN>18
    errordlg('Input for parameter N too big, N must be smaller than 18','Error')
    return
end

valM=str2double(get(handles.txtM,'string'));
if isnan(valM) | valM<=0 | mod(valM,floor(valM))~=0
    errordlg('Wrong Input for parameter M, M must be non zero natural','Error')
    return
end

valfc=str2double(get(handles.txtfc,'string'));
if isnan(valfc) | valfc<=0 
    errordlg('Wrong Input for parameter fc, fc must be non zero positive real','Error')
    return
end

valv=str2double(get(handles.txtv,'string'));
if isnan(valv) | valv<0 
    errordlg('Wrong Input for parameter v, v must be non zero positive real','Error')
    return
end

valDS=str2double(get(handles.txtDS,'string'));
if isnan(valDS) | valDS<=0 
    errordlg('Wrong Input for parameter DS, DS must be non zero real','Error')
    return
end

valBSppD=str2double(get(handles.txtBSppD,'string'));
if isnan(valBSppD) | valBSppD<=0 
    errordlg('Wrong Input for parameter BSppD, BSppD must be non zero real','Error')
    return
end

valBSAS=str2double(get(handles.txtBSAS,'string'));
if isnan(valBSAS) | valBSAS<=0 
    errordlg('Wrong Input for parameter BSAS, BSAS must be non zero positive real','Error')
    return
end

valMSAS=str2double(get(handles.txtMSAS,'string'));
if isnan(valMSAS) | valMSAS<=0 
    errordlg('Wrong Input for parameter MSAS, MSAS must be non zero positive real','Error')
    return
end

valt=str2double(get(handles.txtt,'string'));
if isnan(valt) | valt<=0 
    errordlg('Wrong Input for parameter t, t must be non zero positive real','Error')
    return
end

valX=str2double(get(handles.txtX,'string'));
if isnan(valX) | valX<=0
    errordlg('Wrong Input for parameter X, X must be non zero positive real','Error')
    return
end

valSNR=str2double(get(handles.txtSNR,'string'));

valmonBS=str2double(get(handles.txtmonBS,'string'));
if isnan(valmonBS) | valmonBS<=0 | mod(valmonBS,floor(valmonBS))~=0 |valmonBS > valS & get(handles.radiobutton20, 'Value')==1;
    errordlg('Wrong Input for the BS antenna to plot, it must be non zero natural smaller or equal to S','Error')
    return
elseif isnan(valmonBS) | valmonBS<=0 | mod(valmonBS,floor(valmonBS))~=0 | valmonBS > 2*valS & get(handles.radiobutton20, 'Value')==0;
    errordlg('Wrong Input for the BS antenna to plot, it must be non zero natural smaller or equal to 2S','Error')
    return
end

valmonMS=str2double(get(handles.txtmonMS,'string'));
if isnan(valmonMS) | valmonMS<=0 | mod(valmonMS,floor(valmonMS))~=0 | valmonMS > valU & get(handles.radiobutton27, 'Value')==1;
    errordlg('Wrong Input for the MS antenna to plot, it must be non zero natural smaller or equal to U','Error')
    return
elseif isnan(valmonMS) | valmonMS<=0 | mod(valmonMS,floor(valmonMS))~=0 | valmonMS > 2*valU & get(handles.radiobutton27, 'Value')==0
    errordlg('Wrong Input for the MS antenna to plot, it must be non zero natural smaller or equal to 2U','Error')
    return
end

valpath=str2double(get(handles.txtpath,'string'));
if isnan(valpath) | valpath<=0 | mod(valpath,floor(valpath))~=0 | valpath > valN
    errordlg('Wrong Input for the path to plot, it must be non zero natural smaller or equal to N','Error')
    return
end

valD=str2double(get(handles.txtD,'string'));
if isnan(valD) | valD<=0 | mod(valD,floor(valD))~=0 
    errordlg('Wrong Input for D, D must be non zero natural','Error')
    return
end

valdrop=str2double(get(handles.txtdrop,'string'));
if isnan(valdrop) | valdrop<=0 | mod(valdrop,floor(valdrop))~=0 | valdrop > valD
    errordlg('Wrong Input for drop to plot, it must be non zero natural smaller or equal to D','Error')
    return
end

cor=[1 str2double(get(handles.edit50,'string')) str2double(get(handles.edit51,'string')) str2double(get(handles.edit52,'string')) 0 str2double(get(handles.edit53,'string')) str2double(get(handles.edit54,'string')) str2double(get(handles.edit55,'string')) str2double(get(handles.edit56,'string')) str2double(get(handles.edit57,'string'))]; 
if isnan(cor(2)) | isnan(cor(3)) | isnan(cor(4)) | isnan(cor(6)) |isnan(cor(7)) |isnan(cor(8)) |isnan(cor(9)) |isnan(cor(10)) 
    errordlg('Check the Correlated Parameters','Error')
    return
end

ti=valt/(0.001*valX);
k=1;
for k=1:valD
    if b==1
    [vald valthetaBS valthetaMS valomegaBS valomegaMS valthetav]=OrientationsFixBS(valR);
    else
    end
    d=get(handles.checkbox14, 'Value');%flag for fixed powers and delays
    if d==1
        A=handles.A;
        B=handles.B;
        for i=1:valN
            pn(i)=10^(str2num(get(handles.A(i),'string'))/10);
            tn(i)=str2num(get(handles.B(i),'string'))*10^(-6);
            i=i+1;
        end
    else
        pn=zeros(length(valN));

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久久久久久久久99999| 成人免费观看av| 欧美日韩在线播放一区| 亚洲精品一卡二卡| 欧美综合视频在线观看| 香蕉加勒比综合久久| 777亚洲妇女| 精品无人码麻豆乱码1区2区 | 欧美私人免费视频| 亚洲第四色夜色| 日韩精品一区二区在线观看| 国内精品免费**视频| 国产精品美女一区二区三区| 色婷婷香蕉在线一区二区| 亚洲国产精品天堂| 欧美成人女星排名| 91一区二区三区在线观看| 尤物视频一区二区| 日韩欧美另类在线| 成人教育av在线| 午夜欧美视频在线观看| 亚洲精品在线电影| 色综合久久久久久久久| 蜜臀99久久精品久久久久久软件| 久久久久久9999| 欧美色区777第一页| 国产一区二区看久久| 亚洲四区在线观看| 日韩一区二区三区精品视频| 成人高清免费在线播放| 日韩国产精品久久久久久亚洲| 色网站国产精品| 国产一区二区在线看| 亚洲精品久久久久久国产精华液| 日韩一区二区在线观看视频 | 欧美福利一区二区| 国产精品996| 三级亚洲高清视频| 国产精品色在线观看| 欧美精三区欧美精三区| 99精品欧美一区二区三区综合在线| 视频一区二区国产| 亚洲视频资源在线| 久久精品夜夜夜夜久久| 5566中文字幕一区二区电影| 不卡一区二区在线| 狠狠狠色丁香婷婷综合久久五月| 亚洲第一成人在线| 亚洲欧美激情插| 国产日韩一级二级三级| 欧美一级在线观看| 欧美午夜精品久久久久久孕妇| www.色综合.com| 国内偷窥港台综合视频在线播放| 亚洲成人一二三| 亚洲精品国产第一综合99久久 | 欧美人妇做爰xxxⅹ性高电影| 成人国产在线观看| 国产 日韩 欧美大片| 麻豆成人免费电影| 免费观看91视频大全| 亚洲电影第三页| 亚洲夂夂婷婷色拍ww47| 中文字幕综合网| 国产精品久久久久久久久快鸭| 久久综合中文字幕| 日韩一级免费一区| 欧美一区二区三区免费大片| 欧美丰满高潮xxxx喷水动漫| 欧美日本韩国一区二区三区视频| 91免费视频大全| 一本色道久久综合亚洲91| 99视频有精品| 91视频在线观看| 91久久精品一区二区三| 日本韩国欧美国产| 亚洲精品在线观看网站| 91精品国产综合久久香蕉的特点| 在线视频你懂得一区| 欧美性生交片4| 欧美日韩亚洲另类| 欧美精品一二三区| 日韩欧美中文字幕精品| 精品国精品国产| 久久久久久影视| 中文在线免费一区三区高中清不卡| 国产日韩视频一区二区三区| 中文字幕的久久| 亚洲男人的天堂一区二区| 亚洲激情一二三区| 性久久久久久久| 久国产精品韩国三级视频| 国产精品正在播放| 99久久夜色精品国产网站| 欧美性猛交xxxxxxxx| 欧美高清精品3d| 久久夜色精品国产噜噜av| 中文字幕在线观看一区二区| 夜夜精品视频一区二区| 日韩成人免费电影| 国内精品不卡在线| 91亚洲男人天堂| 欧美日韩国产影片| 久久综合久久鬼色中文字| 久久精子c满五个校花| 18成人在线观看| 日精品一区二区三区| 国产高清亚洲一区| 日本久久一区二区三区| 欧美xxxx老人做受| 一区在线播放视频| 蜜桃久久av一区| 99久久国产综合精品色伊| 欧美日韩精品专区| 久久蜜桃av一区精品变态类天堂| 亚洲色图制服诱惑| 久久精品二区亚洲w码| 91麻豆国产福利在线观看| 日韩欧美一区在线| 亚洲另类中文字| 精品在线播放免费| 日本精品视频一区二区| 欧美精品一区二区精品网| 亚洲精品亚洲人成人网在线播放| 日韩成人一区二区| 色爱区综合激月婷婷| 日韩一区二区不卡| 亚洲美女视频在线| 国产麻豆精品theporn| 欧美日韩一区不卡| 中文欧美字幕免费| 青娱乐精品在线视频| 色一情一乱一乱一91av| 国产亚洲制服色| 麻豆成人91精品二区三区| 欧美影视一区在线| 欧美韩国日本综合| 国产最新精品免费| 67194成人在线观看| 伊人开心综合网| 成人激情文学综合网| 26uuu亚洲| 狠狠狠色丁香婷婷综合激情 | 91美女片黄在线观看91美女| www日韩大片| 美国av一区二区| 91精品国产91久久久久久一区二区| 17c精品麻豆一区二区免费| 在线播放视频一区| 亚洲激情五月婷婷| 99久久99久久精品免费观看| 日本一区二区三区dvd视频在线| 美女www一区二区| 欧美一级高清大全免费观看| 亚洲福利一二三区| 欧美日韩在线直播| 一区二区三区成人在线视频| 99久久久久久| 自拍偷拍国产精品| 91麻豆免费看片| 亚洲精品日韩一| 日本韩国精品在线| 一级日本不卡的影视| 色www精品视频在线观看| 亚洲日本一区二区| 色综合久久88色综合天天免费| 亚洲婷婷综合久久一本伊一区 | 午夜伦理一区二区| 在线观看不卡一区| 污片在线观看一区二区| 欧美精品一级二级| 美国欧美日韩国产在线播放| 日韩精品一区二区三区视频 | 亚洲精品综合在线| 欧美在线高清视频| 性做久久久久久久免费看| 欧美日韩国产高清一区| 免费高清在线一区| 26uuu色噜噜精品一区二区| 国产成人精品亚洲日本在线桃色| 国产日韩精品一区二区三区在线| 国产成人综合精品三级| 中文字幕制服丝袜成人av| 91美女蜜桃在线| 日韩高清在线电影| 欧美第一区第二区| 国产电影一区二区三区| 自拍偷拍国产精品| 在线成人午夜影院| 国产精品一区二区在线看| 中文字幕综合网| 69堂精品视频| 国产精品一区一区| 一区二区三区在线视频观看| 欧美麻豆精品久久久久久| 国内精品免费**视频| 一区二区视频免费在线观看| 日韩一区二区在线观看视频播放| 国产 欧美在线| 亚洲国产中文字幕|