Importing and Plotting Data

6 ビュー (過去 30 日間)
Paul
Paul 2014 年 11 月 18 日
コメント済み: Paul 2014 年 11 月 18 日
I have pasted 4 columns of data into a .txt file and then:
fileID=fopen('Lab5data.txt');
plot(data(:,1),data(:,2),data(:,3),data(:,4));
trying to plot all 4 on the same plot but im getting:
Undefined variable Data.
Error in Lab5Practice (line 42)
plot(data(:,1),data(:,2),data(:,3),data(:,4));
a few days ago i made a similar plot using the same method and it worked fine but today neither this nor the old one will work. I have not moved any files since then and the file path shows correct. What am i missing here?

採用された回答

Hikaru
Hikaru 2014 年 11 月 18 日
It's because you have not define the variable data .
  5 件のコメント
Paul
Paul 2014 年 11 月 18 日
that did it, thanks you so much!
The comment thing was my fault, i fixed it (i think) just after i hit submit and then looked up and saw the comment function. first time user here, wont happen again.
Paul
Paul 2014 年 11 月 18 日
i used the data = dlmread('Lab5data.txt') and it worked.
seems somehow, maybe when it was saved, its capitalized "Data" as well as another thing, strange. Ill watch out for it next time.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Import and Export についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by