Info

此问题已关闭。 请重新打开它进行编辑或回答。

Problem with for loop.

1 次查看(过去 30 天)
Max
Max 2016-3-2
关闭: MATLAB Answer Bot 2021-8-20
Hello,
I´ve got a problem with the calculation of a matrix in a for loop. It seems easy to solve but I can´t find my fault in the following source code:
N=100
for i=1:10
tfail = ixN-vector
tfail_sort = sort(tfail);
t_boot=0:1:max(tfail);
z_boot=zeros(1,length(t_boot));
for k=1:length(tfail);
z_boot(k,:)=1.*(t_boot>=0 & t_boot<tfail_sort(k));
z_boot(k,:)=z_boot(k,:)+0.*(t_boot>=tfail_sort(k));
end
R_m_boot(i,:) = (1/N)*sum(z_boot); % Sum the columns
end
Can somebody help me, please?
  2 个评论
Jos (10584)
Jos (10584) 2016-3-2
What is the error you get?
Jan
Jan 2016-3-2
All we see ist the failing code. But we cannot guess, what it should do.
It cannot be useful to perform
z_boot(k,:) = z_boot(k,:) + 0 .* <anything>;
The multiplication by 0 is not useful in a sum.

回答(0 个)

此问题已关闭。

标签

Community Treasure Hunt

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

Start Hunting!

Translated by