How to load excel file..?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
IITH
el 8 de Jul. de 2014
Comentada: IITH
el 9 de Jul. de 2014
Hi, i was trying load some data from excel but it is showing error like "Undefined function or method 'Input' for input arguments of type 'char'...
this is wt i wrote xx = xlsread('C:\Users\Nagaraj Jade\Desktop\Book1.xlsx','Sheet1');
but it working in other system, so i need to install anything extra or what to do..?
2 comentarios
C.J. Harris
el 8 de Jul. de 2014
Are you sure the error is not: Undefined function or method 'xlsread' for input arguments of type 'char'.? As that would indicate a problem with your path.
Respuesta aceptada
Vijay Nahar
el 8 de Jul. de 2014
Try concatanating the string within xlsread, using square brackets:
xx = xlsread(['C:\Users\Nagaraj Jade\Desktop\Book1.xlsx','Sheet1']);
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Import from MATLAB en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!