Index exceeds the number of array elements (0)

조회 수: 453 (최근 30일)
Hari
Hari 2022년 6월 14일
편집: Voss 2024년 3월 7일
I am receiving the appended error (untitled.jpg) when I run the code in the loop which is appended as a jpg (loop where error occurs.jpg). I am also attaching the plot permeability file for reference.
  댓글 수: 4
RAJESH
RAJESH 2024년 3월 7일
clc; clear all;
%define u
%define v
%L_i(x)=a_i(x)+b_i
format 'bank'
x=[1/4 1/2]
n=2;
for i=1:n
a(i)=x(i+1)-x(i)/0.5
end
why am i getting index exceed the number of arrays
Voss
Voss 2024년 3월 7일
편집: Voss 2024년 3월 7일
@RAJESH: x has two elements. You try to access x(i+1) for i =1:2, but when i is 2, x(i+1) is x(3), which doesn't exist because x has only two elements.

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

답변 (1개)

Cris LaPierre
Cris LaPierre 2022년 6월 14일
The error means you are trying to index an empty array.
a = [];
a(1)
Index exceeds the number of array elements. Index must not exceed 0.
It looks like the line causing the error is from ChomboOutput
obj.levelArray(1)
You'll want to check that levelArray has been assigned values before indexing into it.

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by