[num,txt,raw] = xlsread(___)

8 ビュー (過去 30 日間)
Leonardo Wayne
Leonardo Wayne 2016 年 3 月 15 日
編集済み: Guillaume 2016 年 3 月 15 日
can anyone give a working example of the syntax above. What does the double underscore do in xlsread?
  1 件のコメント
dpb
dpb 2016 年 3 月 15 日
There is no such syntax; must be a placeholder in documentation or somesuch. Show the actual expression in context...

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

回答 (1 件)

Guillaume
Guillaume 2016 年 3 月 15 日
編集済み: Guillaume 2016 年 3 月 15 日
The ___ in the documentation means that you can replace it with any of the other syntax shown before and is just there for brevity. Basically, you can use the [num, text, raw] output form with any of the input forms:
[num, txt, raw] = xlsread(filename)
[num, txt, raw] = xlsread(filename,sheet)
[num, txt, raw] = xlsread(filename,xlRange)
[num, txt, raw] = xlsread(filename,sheet,xlRange)
[num, txt, raw] = xlsread(filename,sheet,xlRange,'basic')

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by