about 'load' imperative sentence
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
상태 박
el 13 de Nov. de 2020
Comentada: 상태 박
el 13 de Nov. de 2020
hello!
my professor gives me homework.
but, i am wondering about homework.
professor wirte source code like this. " load twolink.dat"
is that right sentence?
i know 'load' imperative sentence is applied .mat flile or ascil file.
in advance, thank you about answering
1 comentario
Stephen23
el 13 de Nov. de 2020
"is that right sentence?"
Although for historical reasons load can import text files, I strongly recommend using a function that is specifically for reading text data, e.g. textscan or readtable or readmatrix or dlmread or similar.
I recommend avoiding the command syntax (except from the command line whilst experimenting with the data), instead use function syntax (and import the file data into a variable):
Respuesta aceptada
Durganshu
el 13 de Nov. de 2020
Editada: Durganshu
el 13 de Nov. de 2020
load command imports files and data in the MATLAB workspace. As far as .dat file is concerned, a .dat file may contain any kind of information. It could be a binary file or a text based file. There is no standard format for them. In order to load them into workspace, you need to know the format of the .dat file and then decide what commands you need to use. Using just load function may not work. You can use uigetfile for your purpose. You can try implementing this code:
[file_name, file_path] = uigetfile('*.dat', 'Select your file');
file = fullfile(file_path, file_name);
data = load(file);
Hope this helps!
Más respuestas (0)
Ver también
Categorías
Más información sobre Live Scripts and Functions 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!