Borrar filtros
Borrar filtros

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

6 visualizaciones (últimos 30 días)
Leonardo Wayne
Leonardo Wayne el 15 de Mzo. de 2016
Editada: Guillaume el 15 de Mzo. de 2016
can anyone give a working example of the syntax above. What does the double underscore do in xlsread?
  1 comentario
dpb
dpb el 15 de Mzo. de 2016
There is no such syntax; must be a placeholder in documentation or somesuch. Show the actual expression in context...

Iniciar sesión para comentar.

Respuestas (1)

Guillaume
Guillaume el 15 de Mzo. de 2016
Editada: Guillaume el 15 de Mzo. de 2016
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')

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by