필터 지우기
필터 지우기

how to use load function??

조회 수: 26 (최근 30일)
nayana
nayana 2013년 2월 18일
댓글: Walter Roberson 2022년 6월 22일
i want to load a file but the problem is i don't want to use syntax load 'kl.txt' i want to use load filename where filename is assigned value of'kl.txt' I require this so that i can use load in functions so that i can pass filename aas argument .

채택된 답변

Image Analyst
Image Analyst 2013년 2월 18일
Try this robust approach:
baseFileName = 'kl.txt';
folder = pwd; % Or whatever folder you want.
fullFileName = fullfile(folder, baseFileName);
if exist(fullFileName, 'file')
% File exists. Read it into a structure.
storedStructure = load(fullFileName);
% Extract individual variables from the structure.
a = storedStructure.a; % Or whatever the variable is called.
b = storedStructure.b; % Or whatever the variable is called.
else
% File does not exist. Alert user
warningMessage = sprintf('Error: mat file does not exist:\n%s', fullFileName);
uiwait(warndlg(warningMessage));
% Assign defaults in case we want to try to continue;
a = 1;
b = 2;
end
Actually, in my code I make it even more robust. I check if the structure has the field before trying to assign it. Let me know if you want that code.

추가 답변 (3개)

Azzi Abdelmalek
Azzi Abdelmalek 2013년 2월 18일
filename='yourfile'
load(filename)

Mark Whirdy
Mark Whirdy 2013년 2월 18일
편집: Mark Whirdy 2013년 2월 18일
do you really want to use load with text files?
myfile = load([fileName,'.',fileExtension]); % load is for workspaces really
myfile = myfile.myfile;
  댓글 수: 1
Walter Roberson
Walter Roberson 2022년 6월 22일
load() of text files is one of the fastest ways to read text data.

댓글을 달려면 로그인하십시오.


Upputholla divya teja
Upputholla divya teja 2022년 6월 22일
i want to load the sesor activity data(file name asset-v1_KPITedu+EDUTECIF1041+2019+type@asset+block@DATA123.xls).i am also tried but it shows error like error usig load.
  댓글 수: 1
Walter Roberson
Walter Roberson 2022년 6월 22일
filename = 'asset-v1_KPITedu+EDUTECIF1041+2019+type@asset+block@DATA123.xls';
data = readtable(filename);
load() is not defined for xls files.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 MATLAB Compiler에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by