Borrar filtros
Borrar filtros

How could I make a program where an excel file is a input?

2 visualizaciones (últimos 30 días)
Roger Vegeta
Roger Vegeta el 4 de Oct. de 2016
Respondida: KSSV el 4 de Oct. de 2016
I mean you have to tell the program just the name of the excel file. I know this doesn't work, but it can help you to understand what I mean.
function
P = input('excell name = ')
t = xlsread('P')
end

Respuestas (1)

KSSV
KSSV el 4 de Oct. de 2016
function t = readexel(filename)
if ~ischar(filename)
error('input hsould be a filename')
end
t = xlsread(filename)
end
You can try like the above.

Categorías

Más información sobre Data Import from 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