How to arrange a column vector into two columns?

9 ビュー (過去 30 日間)
Heirleking
Heirleking 2022 年 2 月 4 日
編集済み: Heirleking 2022 年 2 月 4 日
So, I have this vector and I need to arrange it as loops. Each value for each loop should start as the next integer from the previous ending loop x= [128 147 166 181 195 216 236 255]
It should look something like this x= [128 147; 148 166; 167 181; 182 195; 196 216; 217 236; 237 255]
I cannot do it manually, since I have to arrange several vectors that will not have the same length as this one. I tried using nested for loops but wasn't successful
  4 件のコメント
Stephen23
Stephen23 2022 年 2 月 4 日
"May be becuase, it falls in the intervel [217 255]."
Every (non-end) element in that vector falls in the interval formed by its adjacent elements. What is so special about 236?
Heirleking
Heirleking 2022 年 2 月 4 日
You are right, I corrected the mistake

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

採用された回答

Stephen23
Stephen23 2022 年 2 月 4 日
編集済み: Stephen23 2022 年 2 月 4 日
Assuming that the missing 236/237 row is a mistake:
x = [128,147,166,181,195,216,236,255]
x = 1×8
128 147 166 181 195 216 236 255
m = [x(1),1+x(2:end-1);x(2:end)].'
m = 7×2
128 147 148 166 167 181 182 195 196 216 217 236 237 255

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by