Filter löschen
Filter löschen

about 'load' imperative sentence

1 Ansicht (letzte 30 Tage)
상태 박
상태 박 am 13 Nov. 2020
Kommentiert: 상태 박 am 13 Nov. 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 Kommentar
Stephen23
Stephen23 am 13 Nov. 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):

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Durganshu
Durganshu am 13 Nov. 2020
Bearbeitet: Durganshu am 13 Nov. 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!
  1 Kommentar
상태 박
상태 박 am 13 Nov. 2020
thank you about your answer!
but i need to think more about my homework
thanks to your answer, i understand about 'uigetfile' command!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Labels and Annotations finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by