How to change data type of table in matlab

10 ビュー (過去 30 日間)
Iram Shahzadi
Iram Shahzadi 2018 年 11 月 12 日
コメント済み: Iram Shahzadi 2018 年 11 月 12 日
I am reading a spreadsheet with 2 columns using readtable command in Matlab. Both columns of the table are read as a string. How two change the datatype of a second column to double.
  2 件のコメント
Stephen23
Stephen23 2018 年 11 月 12 日
"How two change the datatype of a second column to double."
Most likely if the data could be imported as numeric then it already would be... what kind of values are in those columns?
If you can, please upload the spreadsheet by clicking the paperclip button.
Iram Shahzadi
Iram Shahzadi 2018 年 11 月 12 日
Thank you for help. Here is the sheet. The first variable is path to Image and second variable 'patient' is some specific location in Image. I want the location to be imported as [1*4 double].

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

採用された回答

Guillaume
Guillaume 2018 年 11 月 12 日
Really, you should change the way you store your data in the spreadsheet. As it is you're losing most of the benefit of the spreadsheet format. Even in excel, you wouldn't be able to use those numbers as they're stored as text.
One of the many ways of extracting the numbers from the text:
t = readtable('book1.xlsx');
t.patient = cellfun(@str2double, regexp(t.patient, '\d+', 'match'), 'UniformOutput', false)
If you didn't have those brackets [] around the text and the numbers had beens separated by spaces, it would have been easier.
  1 件のコメント
Iram Shahzadi
Iram Shahzadi 2018 年 11 月 12 日
Thanks a lot. it worked for me :)

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

その他の回答 (1 件)

madhan ravi
madhan ravi 2018 年 11 月 12 日
  1 件のコメント
Iram Shahzadi
Iram Shahzadi 2018 年 11 月 12 日
I want to change the second variable to double type. I used str2double but all entries under the second variable changed to NaN. Here is what i used
T = readtable('Book1.xlsx') variableNames = T.Properties.VariableNames; T.(variableNames{2}) = str2double(T.(variableNames{2}));

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

カテゴリ

Help Center および File ExchangeSpreadsheets についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by