How should do i get rid of this error?

1 次查看(过去 30 天)
for i=1:length(no)
Distance=[];
k=0;
end
for j=1:length(no)
if j~=i
sum_squ_diff=sum((stock(i).price-stock(j).price).^2);
Distance(k,:)=[stock(j).permno, stock(i).permno, sum_squ_diff];
k=k+1;
end
end

采纳的回答

Birdman
Birdman 2017-11-23
You say that k=0 at first and then on line
Distance(k,:)=[stock(j).permno, stock(i).permno, sum_squ_diff];
you try to reach to
Distance(0,:)
This is the error. Change it.
  1 个评论
Walter Roberson
Walter Roberson 2017-11-23
Also, every iteration of
for i=1:length(no)
Distance=[];
k=0;
end
is doing exactly the same thing. There is no point in doing those more than once.

请先登录,再进行评论。

更多回答(0 个)

类别

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

标签

Community Treasure Hunt

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

Start Hunting!

Translated by