How do I specify the datatype for readcell?

조회 수: 62 (최근 30일)
Isaac Gruver
Isaac Gruver 2022년 5월 11일
답변: dpb 2022년 5월 11일
I have a large text file filled with part numbers that I want to read into MatLab. When using the command, I get a cell array, which makes sense.
Unfortunately, some of the part numbers follow a XX-XX-XXXX` format, and MatLab reads those ones in as datatime values rather than character arrays, so I have a cell array filled with character arrays and a few datetimes. Is there a way to specify that all of the cells should be filled with character arrays?

채택된 답변

dpb
dpb 2022년 5월 11일
readcell will allow the use of an import options object whch would let you set the variable types. However, I'd strongly encourage the use of readtable instead; the table is far more convenient to use than having to dereference all cell arrays.
See detectImportOptions and readtable and friends for all the skinny, examples, ...

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Tables에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by