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일

2 개 추천

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')

카테고리

태그

질문:

2016년 3월 15일

편집:

2016년 3월 15일

Community Treasure Hunt

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

Start Hunting!

Translated by