フィルターのクリア

how to convert numstrng to integers and take lcm

1 回表示 (過去 30 日間)
Malik
Malik 2013 年 4 月 24 日
consider out 2 =
1 0 0 1 0 1
1 1 1 1 0 1
1 1 0 1 1 1
if i need to take the lcm of the binary rows that have in out2 i am doing this:
converting each row to numstrng using: out3 = num2str(out2(:))
now i need to pick 1 to m rows of this string (m = 5 here) and convert it to decimal but it wont work: out 4 = bin2dec(out3(1:1:5))
then i need to take the lcm of out4
x = lcm(out4)
% but the lcm function wont work for more than two numbers which is pretty challenging here, how to work through this

採用された回答

Andrei Bobrov
Andrei Bobrov 2013 年 4 月 24 日
Try this:
out2 = [
1 0 0 1 0 1
1 1 1 1 0 1
1 1 0 1 1 1];
out4 = out2*2.^(size(out2,2)-1:-1:0)';
out_pair = nchoosek(out4,2);
out5 = num2cell(out_pair,1);
out_last = [out_pair, lcm(out5{:})];
  5 件のコメント
Malik
Malik 2013 年 4 月 26 日
such that out_last comes in binary form in a row matrix?
Andrei Bobrov
Andrei Bobrov 2013 年 4 月 26 日
out = dec2bin(out_last(:,end)) - '0';

サインインしてコメントする。

その他の回答 (1 件)

Vineet
Vineet 2013 年 4 月 24 日
You can put all the numbers in an array and take LCM of 2 numbers at a time.
Say, you begin with the LCM of the first and the second number. Whatever LCM you get now, treat it as a new number and calculate LCM of this number and the next number in the list.
Run a loop for the same.
  1 件のコメント
Malik
Malik 2013 年 4 月 24 日
okay let me try this. Thanks

サインインしてコメントする。

カテゴリ

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