Borrar filtros
Borrar filtros

read data from .m file

74 visualizaciones (últimos 30 días)
zina ben
zina ben el 14 de En. de 2012
Comentada: Abishek el 6 de Nov. de 2023
hi
I want to store different variables in the same .m file,And after I must read these variables one by one. exemple
1
23 3 4
5 6 4
This is contain of .m file.I need to, load this contain, read 1st and 3 rd rows. I hope you help me. thanks
  4 comentarios
Walter Roberson
Walter Roberson el 13 de Oct. de 2016
fileId = fopen('pfoutput.m');
datacell = textscan(fileId, '*%f|%f/%f*', 'HeaderLines', 3, 'CollectOutput', 1);
fclose(fileId);
opPoints = datacell{1};
atsprink
atsprink el 14 de Oct. de 2016
awesome...thank you for the help. I was able to make little tweaks to your solution to work as I needed it to.

Iniciar sesión para comentar.

Respuestas (1)

Thomas
Thomas el 17 de En. de 2012
Variables are not stored in .m files as they are ASCII, Variables are usually stored in .mat files that matlab can read.
  1 comentario
Abishek
Abishek el 6 de Nov. de 2023
How to read the .m flies

Iniciar sesión para comentar.

Community Treasure Hunt

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

Start Hunting!

Translated by