Attempt to grow array along ambiguous dimension.

1 次查看(过去 30 天)
Hi,
I tried to get countour coordinates like this:
[x,y]=find(FC(:)>thresh);
[x1,y1]=find(FC(:)<thresh);
[x3,y3]=find( contour([x,y]))
[x4,y4]= find(contour([x1,y1]))
afeter that
S1=zeros(size(I));
S1([y3,x3])=2;%pet
S1([y4,x4])=1;
it gives as error Attempt to grow array along ambiguous dimension. in S1([y3,x3])=2;%pet
Thanks

采纳的回答

Stephen23
Stephen23 2016-3-22
编辑:Stephen23 2016-3-22
S1(y3,x3)=2;%pet
MATLAB does not accept both x and y indices together in a vector. These must be entered separately.
Learn about how MATLAB works by taking the introductory tutorials:

更多回答(0 个)

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by