How can I determine if specific cells within an array are empty?

1 次查看(过去 30 天)
I am writing a program to collect certain numbers within an array, but I want to pass over the cells that are empty.
I keep getting the error "Cell contents reference from a non-cell array object. Error in 'if isempty(edgeXPlus{i})'"
I've looked at other people's code and this line seems to work for them, but I can't figure out why it doesn't work in my code.
for i = 1:(number)
if (isempty(edgeXPlus)) %%ensures that the array has values
else
if isempty(edgeXPlus{i}) %%ensures that the cell has a value
else
if(edgeXPlus(i) >= xUpper) %%checks to see if these values are within the correct range
count = count + 1;
edgeX(count) = edgeXPlus(i) %%if one is, it is assigned to 'edgeX'
end
end
end
end

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2015-7-6
编辑:Azzi Abdelmalek 2015-7-6
That means edgeXPlus is not a cell array. Use edgeXPlus(1) instead of edgeXPlus{1}

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Line Plots 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by