manjuthaa
Followers: 0 Following: 0
clc;
clear all;
close all;
w=18;
p=103;
n=2;
q21=0.07;
q20=0.91;
q22=0.0071;
fid=fopen('proj12.dat','w');
for ks=65:10:100
ks
pe=0;
for k=0:1:w-1
c=((factorial(w-k))/factorial(w))*(factorial(w-1)/factorial(w-k-1));
for y=0:1:w-2
z=((factorial(w-y))/factorial(w))*(factorial(w-2)/factorial(w-y-2))
d=q20+(c*(q21))+(z*(q22));
e=(d^((ks)-1));
for j=0:1:w
pe1=(factorial(w)/((factorial(w-j))*factorial(j)));
x=pe1*e;
pe2=((-1)^j)*x;
pe=pe+pe2;
end
end
end
pez=pe/2
fprintf(fid,'%2d %5.3e \n',ks,pez);
end
fclose(fid);
while plottig the graph for above program i had a warning that negative data ignored....how to clear it?
統計
1 質問
0 回答
ランク
of 173,995
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
質問
how to clear the warning negative data ignored?
clc; clear all; close all; w=18; p=103; n=2; q21=0.07; q20=0.91; q22=0.0071; fid=fopen('proj12.dat','w'); for ks=6...
約15年 前 | 2 件の回答 | 0