I have a problem related to my following code... Code generation required variable 'B1' to be fully defined before sub scripting it.

1 回表示 (過去 30 日間)
function B1 = SortSignificanceFirst(B)
[mB, ~] = size(B);
SI = zeros(mB,2);
for b=1:mB
[mBB, ~] = size(B(b,1));
SI(b,:) = [mBB b];
end
SI_Sorted = sortrows(SI);
for b=1:mB
B1(b,1) = B(SI_Sorted(mB-b+1,2),1);
end

採用された回答

Adam
Adam 2017 年 7 月 10 日
Just pre-declare B1 as
B1 = zeros(mB,1);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInput Specification についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by