Why does the following function produce error (Index in position 2 exceeds array bounds)?
이전 댓글 표시
Why does the following function produce error-
Index in position 2 exceeds array bounds.
Error in POD_DMD (line 47)
imagesc(reshape(Phi(1:r*c,mode),r,c));axis
image;set(gca,'Ydir','Normal')
close all
figure('name','POD')
subplot(figs,1,1)
imagesc(reshape(Phi(1:r*c,mode),r,c));axis image;set(gca,'Ydir','Normal')
title(['\Phi',sprintf('_%i (u-component)',mode)])
subplot(figs,1,2-d)
if com == 2
imagesc(reshape(Phi(r*c+1:end,mode),r,c));axis image;set(gca,'Ydir','Normal')
title(['\Phi',sprintf('_%i (v-component)',mode)]);
end
Please suggest possible solution.
Thanks!
댓글 수: 10
Priyank Goel
2021년 7월 10일
Walter Roberson
2021년 7월 10일
You read in either no files or else exactly one file. What shows up for count ?
Priyank Goel
2021년 7월 12일
편집: Priyank Goel
2021년 7월 12일
Walter Roberson
2021년 7월 12일
편집: Walter Roberson
2021년 7월 12일
The question is, after you run your code and get no output, what value shows up for count ?
What output do you get if you use
ls(directory)
Priyank Goel
2021년 7월 12일
Walter Roberson
2021년 7월 12일
Ah, so if the directory named 4_68_image does not exist inside the current directory, then how do you expect to read files from it?
Priyank Goel
2021년 7월 12일
Priyank Goel
2021년 7월 12일
Walter Roberson
2021년 7월 12일
data(:,:,count) =
rgb2gray(imread(sprintf('%s/scene_%04d.bmp',directory,count))) ;
답변 (1개)
Priyank Goel
2021년 7월 12일
편집: Priyank Goel
2021년 7월 12일
0 개 추천
카테고리
도움말 센터 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
