フィルターのクリア

Load and plot data from txt file

8 ビュー (過去 30 日間)
Melvin
Melvin 2013 年 6 月 4 日
Good afternoon everyone,
I'm doing a research project where I have to create a GUI that allows you to open a .txt file and plot its contents. Here is my code so far:
%Opens file
[filename, pathname] = uigetfile('*.txt');
file = fullfile(pathname,filename);
S = load(file);
newfilename = (S(1:end-4));
x = newfilename(:,1);
y = newfilename(:,2);
plot(x,y);
For now I only have it specifically open the first 2 columns of data for convenience. This returns an empty plot. What am I doing wrong?

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 6 月 4 日
編集済み: Azzi Abdelmalek 2013 年 6 月 4 日
To read a txt file use
dlmread
textscan
fgetl
fscanf

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by