readcell
Create cell array from file.
Syntax
C = readcell(filename)
C = readcell(filename, opts)
Input argument
filename - a string: filename source.
opts - DelimitedTextImportOptions object
Output argument
C - a cell.
Description
C = readcell(filename) creates a cell array by importing column-oriented data from a text or spreadsheet file.
C = readcell(filename, opts) creates a cell array using the settings defined in the opts import options object. The import options object allows you to customize how readcell interprets the file, offering greater control, improved performance, and the ability to reuse the configuration compared to the default syntax.
Examples
See also
writecell, detectImportOptions, writetable, readtable, fileread.
History
Version
Description
1.10.0
initial version
Author
Allan CORNET
Last updated