photo

manjuthaa


Actif depuis 2011

Followers: 0   Following: 0

Message

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?

Statistiques

MATLAB Answers

1 Question
0 Réponses

RANG
196 110
of 301 383

RÉPUTATION
0

CONTRIBUTIONS
1 Question
0 Réponses

ACCEPTATION DE VOS RÉPONSES
0.0%

VOTES REÇUS
0

RANG
 of 21 252

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG

of 174 306

CONTRIBUTIONS
0 Problèmes
0 Solutions

SCORE
0

NOMBRE DE BADGES
0

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

Feeds

Afficher par

Question


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...

environ 15 ans il y a | 2 réponses | 0

2

réponses