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 CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by