error using fprintf function

54 visualizaciones (últimos 30 días)
Joshua Mikhael Prieto
Joshua Mikhael Prieto el 20 de Sept. de 2020
Comentada: Joshua Mikhael Prieto el 20 de Sept. de 2020
A = 1000000000;
B = A / 512;
fprintf(B);
Error using fprintf
No format character vector.
Error in MachineProblem5 (line 4)
fprintf(B);
can someone please help me with this error, fprinf funtion suddenly goes into error. Same goes with my previous works, it began to display fprintf error

Respuesta aceptada

KSSV
KSSV el 20 de Sept. de 2020
Editada: KSSV el 20 de Sept. de 2020
You have to specify a format specifier.
A = 1000000000;
B = A / 512;
fprintf('%f\n',B); % %f is for floating point number, \n is for next line
  1 comentario
Joshua Mikhael Prieto
Joshua Mikhael Prieto el 20 de Sept. de 2020
Thank you so much! That solves the problem. I'll always keep that in mind.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Startup and Shutdown en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by