Combining the data

F = 3 5 6 15 17 21 35 45 46 51 56 57 66 70 71
please tell how to combine as
3 5
5 6
6 15
15 17
17 21 as on

 Akzeptierte Antwort

Andrew Newell
Andrew Newell am 9 Jan. 2012

0 Stimmen

[F(1:end-1)' F(2:end)']

Weitere Antworten (1)

Walter Roberson
Walter Roberson am 9 Jan. 2012

0 Stimmen

reshape(F, 2, []).'

2 Kommentare

kash
kash am 9 Jan. 2012
Thanks walter
kash
kash am 9 Jan. 2012
Walter ur code is not working for odd numbers od data
ur code output for my data is
F = 3 5 6 15 17 21 35 45 46 51 56 57 66 70 71
is
3 5
6 15
17 21
but i nees as
3 5
5 6
6 15

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Hilfe-Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by