How to include txt file on standalone app by app designer.
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Jae-Hee Park
am 8 Okt. 2021
Bearbeitet: zz17635
am 27 Sep. 2024
Hi
I am making a app using by app designer which read txt file and display values.
I am using this code.
function Data = array(filepath)
arguments
filepath = '../textfile/text.txt';
end
Data = readmatrix(filepath);
end
But when I make a standalone app, I don't know how to include text.txt file.
please let me know how to include text.txt file on standalone app and how to read it.
0 Kommentare
Akzeptierte Antwort
Cris LaPierre
am 8 Okt. 2021
I think you should be able to use the application compiler and include your text file in the 'Files your app needs in order to run' section. You can then write your app assuming the file will be in the current folder. You do not need to include a path to the file. You would just use the name.
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Structures 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!