Info

この質問は閉じられています。 編集または回答するには再度開いてください。

hi there are few error in my code. kindly fix them i am a newbie.

1 回表示 (過去 30 日間)
rana zain
rana zain 2020 年 8 月 31 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
clc;
close all;
clear all;
%%
segma_N = 10.^-7;
p_db = 0:1:30; %power
p = 10.^(p_db./10);
R = 0.5; %Optoelectronic conversion factor
%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%I = 1; %linspace(0,100,length(p));
AP = @(I)((0.5)*erfc((p.*R.*I)./segma_N)*FI_I(I));
P_e = integral(AP,0,100);
semilogy(p,P_e);
%po = 0.5*erfc((p.*R.*I)/segma_N)*(1.3604e+162);
% P_e = integral(@(I) po(I),0,500);
% semilogy(p,P_e);
hold on
axis([0 30 10^-5 0.5])
grid on
  1 件のコメント
Walter Roberson
Walter Roberson 2020 年 8 月 31 日
FI_I is not defined in your code.

回答 (0 件)

この質問は閉じられています。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by