how to give a matrix index value from negative?

1 次查看(过去 30 天)
In my project handling some matrix form...but matrix starting index value as o..that is a[0] ,a[1] ...and so on. now i represent the value -4 to +4...how to represent (-4) in index form as a[..]????

采纳的回答

Andrei Bobrov
Andrei Bobrov 2013-1-9
编辑:Andrei Bobrov 2013-1-9
a = -4:4;
a(1)
for prasanna comment
su=4;
sv=4;
fh=[1 2 3 4; 2 3 4 5 ; 5 6 7 8 ; 1 2 3 5];
t = -4:4;
n = numel(t);
a = ones(n);
for ii = 1:n
for jj = 1:n
for u=1:su-2
for v=1:sv
if fh(u,v)==t(ii) && fh(u+1,v)==t(jj)
dell=1;
else
dell=0;
end
a(ii,jj)=a(ii,jj)+dell;
end
end
end
end
  6 个评论
Dhines
Dhines 2013-1-9
please give one suggestion sir,,, here su and sv ,i taken as a dimensions of original image ...my image is bmp type of image. size is 416x259...when i replace the value of su and sv on before coding session..what i have to do change in code?...su,sv,fh,t,n,a?
Jan
Jan 2013-1-9
Accepting an answer means that the problem is solved. Is this correct?

请先登录,再进行评论。

更多回答(0 个)

类别

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