フィルターのクリア

How do I read a specific string and numerical value from a .txt file and use each one for calculation?

1 回表示 (過去 30 日間)
So I have .txt file that has the following information:
NameA 1999 50
NameB 2005 75
NameC 1987 86
...
The name, the year, and the number are separated by a tab I am supposed to write a script that would read the above information into MatLAB, use the number in the 3rd column for some calculation, and then display the name, year, and the calculated value in 3 columns onto the command window.
How do I even target the numbers in the 3rd columns?

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2014 年 2 月 24 日
im=importdata('file.txt')
num=im.data
c2=num(:,1) % second column
c3=num(:,2) % third column
texte=im.textdata % first column
  2 件のコメント
John
John 2014 年 2 月 24 日
I'm at the part where I have to print some information with the following format:
fprintf('company %s founded in %d has an income of %f, NameA, Year, Income)
I used the sscanf to break down the 2nd and 3rd column so that I could target each individual year and each individual income.
However, for the 1st column, I couldn't use sscanf to break it downn into single elements since it is composed of String.
How do I do that?
Image Analyst
Image Analyst 2014 年 2 月 24 日
I'm not sure of the problem. It's a string and you want a string and you put %s in the sscanf() statement for it, so what's going wrong? Show you sscanf() statement, because it sounds fine to me.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangePredictive Maintenance Toolbox についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by