Borrar filtros
Borrar filtros

Getting an error thrown everytime I try to open more than one file in a matrix at a time

2 visualizaciones (últimos 30 días)
% rev: 0.1b
clear;
[filename, path] = uigetfile('*.csv','Comma Seperated Values (.csv)',...
'MultiSelect', 'on');
if filename == 0
return
end
above is the code I am using to open multiple files at once in to a matrix to open later in the script, the problem is every time I open more than one file at a time i get an error:
??? Undefined function or method 'eq' for input arguments of type 'cell'.
Error in ==> csvautomation at 8
if [filename] == 0
what should I do to avoid this error? Or get around it somehow?

Respuesta aceptada

Chirag Gupta
Chirag Gupta el 15 de Jun. de 2011
This is because when you select multiple files, filename becomes a cell array of file names.
The operator == will error on a cell aray.
(~iscell(filename) && filename == 0)
This should take care of both cases! (Note: earlier suggested isempty which will not work)
  3 comentarios

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Startup and Shutdown 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!

Translated by