Info

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

what is the problem of my code it say when i run the code it show me Error in stop4 (line 17) semilogy(x,k)

1 回表示 (過去 30 日間)
Kidist Getu
Kidist Getu 2016 年 10 月 14 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
a=0.0001;
l=0.003;
eo=8.85e-14;
er=11.9;
es=eo*er;
q=1.6e-19;
f=550:1650;
p=1./power(2*pi*f,2);
c=p./1;
xd=(a*es)./c;
xd1=power(xd,1.5);
l1=power(1,0.5);
a1=power(a,0.5);
es1=power(es,0.5);
k=4*pi*xd1*q*l1*q*a1*2.2*power(10,5);
nd=es1./k;
semilogy(x,k)
xlabel('xd');
ylabel('nd');
hold on % <— ADD ‘hold’
plot(x,log10(k));

回答 (3 件)

Kidist Getu
Kidist Getu 2016 年 10 月 14 日
編集済み: Walter Roberson 2016 年 10 月 15 日
I also attached the program if ti helps

Wayne King
Wayne King 2016 年 10 月 14 日
編集済み: Wayne King 2016 年 10 月 14 日
Hi, you should always format your code so people can read it easier. I have formatted it for you.
You do not provide us with the x variable in your code above so we cannot diagnose the problem.
You should also report the error message you are getting.

Walter Roberson
Walter Roberson 2016 年 10 月 15 日
Your line
semilogy(x,k)
should be
semilogy(xd,k)
Your line
plot(x,log10(k));
should be
plot(xd,log10(k));

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by