Why following program is displaying the value of B but not writing in a file.
How to solve this issue?
write = fopen('tempresults.dat','a');
syms T;
B = vpa(int(exp(-(65000.0)/(8.34*T)),273.15,573.15))
fprintf(write,'%e',B);

 Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 25 de Jun. de 2015

2 votos

A=double(B)
fprintf(write,'%e',A);

Más respuestas (0)

Categorías

Etiquetas

Preguntada:

el 25 de Jun. de 2015

Comentada:

el 25 de Jun. de 2015

Community Treasure Hunt

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

Start Hunting!

Translated by