Convert Txt file to an array
Mostrar comentarios más antiguos
fid = fopen('C:\Users\Acer\Desktop\project hydro\Offset.txt');
data=textscan(fid,'%s');
fclose(fid);
Respuestas (1)
Walter Roberson
el 27 de Jun. de 2022
data = readmatrix('C:\Users\Acer\Desktop\project hydro\Offset.txt');
Categorías
Más información sobre Cell Arrays en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!