Info
此问题已关闭。 请重新打开它进行编辑或回答。
What's wrong with the code?
1 次查看(过去 30 天)
显示 更早的评论
The code supposed to delete an element from B cell if corresponding P = 0. Please help me to fix it. Thanks, George.
L = [1 10 15];
L_cell = num2cell(L);
P_max = [100;150;200];
Pg = [90 150 150];
B = [1;2;3];
for k = 1:length(L)
P_d{k} = P_max*L_cell{k};
P{k}=P_d{k} - Pg';
B_cell{k} = num2cell(B);
if (P{k}(:) == 0)
B_cell{k}(:) = [];
end
end
0 个评论
回答(1 个)
Adam
2017-8-8
编辑:Adam
2017-8-8
Simple use of the debugger or even just the command line would help you solve this.
>> P{k}(:)
ans =
1410
2100
2850
This cannot be tested by equality against 0 in an if statement (or rather not in the way you would want it to be).
It isn't obvious what you want in this case, but
doc all
doc any
will solve the problem in 2 different ways depending on what logic you want, e.g.
if ( all( P{k}(:) == 0 ) )
or
if ( any( P{k}(:) == 0 ) )
2 个评论
Adam
2017-8-8
The point is though that P{k} contains 3 elements, not just one. So P == 0 does not make sense in this context.
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!