how to generate subsequent combination of elements

2 ビュー (過去 30 日間)
Jay Hanuman
Jay Hanuman 2016 年 11 月 15 日
編集済み: John D'Errico 2016 年 11 月 15 日
I have sequence t=1 3 4 4 6 2 2 2 2 1 4. I want to generate combination of two subsequent elements. i.e. 13 34 44 46 62 22 22 22 21 14. how to do it

採用された回答

John D'Errico
John D'Errico 2016 年 11 月 15 日
編集済み: John D'Errico 2016 年 11 月 15 日
What does the number 13 mean? 13 is just a symbol. In base 10, it means the number (1*10+3). So creating your vector is trivial.
s = 10*t(1:end-1) + t(2:end);
Learn to use vector operations in MATLAB. Your code will benefit greatly.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by