Error Using fprintf Invalid file identifier. Use fopen to generate a valid file identifier.

1 visualización (últimos 30 días)
Hello,
I have this script.
I = (kron(ev1_of_alice,(ev1_of_bob+ev2_of_bob)))+kron(ev2_of_alice,(ev1_of_bob-ev2_of_bob));
if ~isnan(I)
fprintf("I = "+ I + "\n");
if abs(I)>2
fprintf("Violated Bell Inequality");
end
else
fprintf("Not enough data to determine S\n")
end
And when I run the script I have this error:
Error Using fprintf Invalid file identifier. Use fopen to generate a valid file identifier.
But I dont understand anything I is not a file I am trying to write a value not a file. How can I solve it?

Respuesta aceptada

the cyclist
the cyclist el 21 de Jun. de 2020
Is this good enough?
I = rand(2);
if ~isnan(I)
I
if abs(I)>2
fprintf("Violated Bell Inequality");
end
else
fprintf("Not enough data to determine S\n")
end

Más respuestas (1)

madhan ravi
madhan ravi el 21 de Jun. de 2020
"I = "+ I + "\n" % without fprintf(...)
  3 comentarios

Iniciar sesión para comentar.

Categorías

Más información sobre String Parsing en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by