how to read text file into table ??

조회 수: 3 (최근 30일)
narimen boucenna
narimen boucenna 2020년 7월 16일
댓글: narimen boucenna 2020년 7월 21일
i want to read text file into table but i cant use readtable neither xlsread cz i have matlab 2009 so any suggestions ??

답변 (1개)

Walter Roberson
Walter Roberson 2020년 7월 16일
table() objects did not exist in R2009* so you cannot read into a table.
xlsread() did exist in R2009* . However, if you are not using Windows with Excel installed, then in that release you were limited to pure numeric files.
In your release, it might perhaps have been most appropriate to use textscan()
  댓글 수: 7
Walter Roberson
Walter Roberson 2020년 7월 17일
You do not need table() objects, then. You need at most a vector of characters, and a corresponding vector of counts, and you would turn that into a vector of probabilities.
You can fopen()/fread()/fclose() to retrieve the characters from the file, or you can use fileread() to get them. But they will be the same as A, so the only reason to write to a file is because the assignment requires it.
Hint: unique() the character vector. accumarray() the third output of unique().
narimen boucenna
narimen boucenna 2020년 7월 21일
thanx Walter Robenson for ur time and i will try to use your hint

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Large Files and Big Data에 대해 자세히 알아보기

제품


릴리스

R2009a

Community Treasure Hunt

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

Start Hunting!

Translated by