Index exceeds the number of array elements (0)
37 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
RAJESH
am 7 Mär. 2024
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
Antworten (1)
Cris LaPierre
am 14 Jun. 2022
The error means you are trying to index an empty array.
a = [];
a(1)
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.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Condensed Matter & Materials Physics finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!