フィルターのクリア

I am trying to store the (non-repetitive) numbers in B = [3,5] after factorizing 225 = 3 x 3 x 5 x 5, but executing the code it stores only one, i.e. B = [3].

1 回表示 (過去 30 日間)
%
A = factor(225);
B(1) = A(1);
flag = 0;
for i = 1:length(A)-1;
for j = i + 1;
if A(i) == A(j)
flag = flag + 1;
break
end
end
if flag == 0;
B(count) = A(i);
count = count + 1;
end
end

採用された回答

Stephen23
Stephen23 2016 年 4 月 11 日
>> unique(factor(225))
ans =
3 5

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by