필터 지우기
필터 지우기

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

조회 수: 2 (최근 30일)
% 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?

채택된 답변

Chirag Gupta
Chirag Gupta 2011년 6월 15일
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
Chirag Gupta
Chirag Gupta 2011년 6월 15일
updated solution, Thanks Walter for catching the typo

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by