how to use load function??
古いコメントを表示
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 .
採用された回答
その他の回答 (3 件)
Azzi Abdelmalek
2013 年 2 月 18 日
filename='yourfile'
load(filename)
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
2022 年 6 月 22 日
load() of text files is one of the fastest ways to read text data.
Upputholla divya teja
2022 年 6 月 22 日
0 投票
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
2022 年 6 月 22 日
filename = 'asset-v1_KPITedu+EDUTECIF1041+2019+type@asset+block@DATA123.xls';
data = readtable(filename);
load() is not defined for xls files.
カテゴリ
ヘルプ センター および File Exchange で Environment and Settings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!