What is the equivalent of
xlsread('data.xlsx','B5:B10')
in the
textscan
?

3 件のコメント

Bob Thompson
Bob Thompson 2019 年 6 月 24 日
To the best of my knowledge, you cannot specify a specific number of rows within textscan. You can tell it to ignore a number of rows at the beginning as 'headers,' but I don't believe it stops until it finishes the file once it actually starts reading.
sermet OGUTCU
sermet OGUTCU 2019 年 6 月 24 日
Thank you Bob. Any alternative for textscan is available?

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

 採用された回答

Guillaume
Guillaume 2019 年 6 月 24 日

0 投票

The intent of the question is a bit unclear since textscan cannot parse excel files. If the intent is to parse a csv file, then both dlmread and csvread (which calls dlmread) accept a range.
In any case, it is very likely that parsing the text file would be a lot easier with readtable or readmatrix. The latter requires R2019a.

その他の回答 (0 件)

タグ

質問済み:

2019 年 6 月 24 日

回答済み:

2019 年 6 月 24 日

Community Treasure Hunt

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

Start Hunting!

Translated by