photo

manjuthaa


Con actividad desde 2011

Followers: 0   Following: 0

Mensaje

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?

Estadística

MATLAB Answers

1 Pregunta
0 Respuestas

CLASIFICACIÓN
154.103
of 301.653

REPUTACIÓN
0

CONTRIBUCIONES
1 Pregunta
0 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.0%

VOTOS RECIBIDOS
0

CLASIFICACIÓN
 of 21.377

REPUTACIÓN
N/A

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
0 Archivos

DESCARGAS
0

ALL TIME DESCARGAS
0

CLASIFICACIÓN

of 175.992

CONTRIBUCIONES
0 Problemas
0 Soluciones

PUNTUACIÓN
0

NÚMERO DE INSIGNIAS
0

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

Feeds

Ver por

Pregunta


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

alrededor de 15 años hace | 2 respuestas | 0

2

respuestas