readcell error for CSV file in MATLABversion 2022a.

5 次查看(过去 30 天)
getting error in reading CSV file uisng readcell command in MATLABversion 2022a.
Command readcell('rte_ioc_map.csv')
error
"Error using readcell
inputs must be a string array, character vector, or cell array of character vectors. "
  7 个评论
Walter Roberson
Walter Roberson 2023-4-14
I suspect that you have a third-party toolbox that is interfering with the normal operation of MATLAB.
My guess is that you are using a third-party toolbox that defines a function named isstring .
You could use
dbstop in readcell
readcell("rte_ioc_map.csv")
and then use the debugger to single step. In particular I expect you would need to "step in" on the line
C = func.validateAndExecute(filename,varargin{:})

请先登录,再进行评论。

回答(1 个)

VBBV
VBBV 2023-4-14
readcell("rte_ioc_map.csv")

类别

Help CenterFile Exchange 中查找有关 Genomics and Next Generation Sequencing 的更多信息

标签

产品


版本

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by