Read m-file from another file
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
saima
el 12 de Mayo de 2012
Comentada: Juan Espinosa
el 8 de Nov. de 2017
Hello,
I am doing a thesis. I am going to describe my problem briefly. I need to make an m-file that can take another m-file as input, read it and do some modifications in that file as instructed. How can i do that job of reading?
-Saima
1 comentario
Juan Espinosa
el 8 de Nov. de 2017
This could have helped you :(
https://www.mathworks.com/matlabcentral/answers/63149-passing-functions-and-m-files-to-functions
Cheers
Respuesta aceptada
Image Analyst
el 12 de Mayo de 2012
Use fopen(), fgets() or fgetl(), and fprintf() and fclose(). With that you can open any text file, such as an m-file, change the text however you want, and write it back out.
2 comentarios
Soni huu
el 4 de Jul. de 2012
Editada: Walter Roberson
el 14 de Jul. de 2012
can u show sample code if my m file in c:\work
m file 1 is the code to identification of data xxx.dat (9 cell)
m file 2 is read m file 1 and [sum cell 4 (cac{4})]/60
thanks..
if normal way.. i must write :
a=sum(cac{4});
ax=a/60
Más respuestas (0)
Ver también
Categorías
Más información sobre Low-Level File I/O en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!