DIR Index exceeds number of array elements

조회 수: 5 (최근 30일)
Lmm3
Lmm3 2022년 12월 15일
댓글: Lmm3 2022년 12월 15일
In the script below, I am trying to read-in all of the files in the folder that have the extension '.bmp'. I would then like to find the Min value from the .bmp file. I would appreciate help with understanding the following error I am receiving. Thank you.:
Index exceeds the number of array elements. Index must not exceed 49.
Error in untitled (line 2)
fileList = dir('*.bmp');
clear(); dir = pwd;
fileList = dir('*.bmp');
for i = 1:length(fileList)
A1 = imread(files(i).name);
A1_NoZero = A1;
A1_NoZero(find(A1_NoZero==0))=2560;
Min_A1 = min(min(A1_NoZero))
end

채택된 답변

Stephen23
Stephen23 2022년 12월 15일
Problem: you have created a variable named DIR, here on this line:
dir = pwd;
Solution: get rid of that line of code and clear the workspace.
  댓글 수: 1
Lmm3
Lmm3 2022년 12월 15일
@Stephen23 That corrected the error. Thank you so much.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 File Operations에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by