1行8列の行列を4行​2列の行列にするには​どうすればよいでしょ​うか。

9 visualizzazioni (ultimi 30 giorni)
raonich
raonich il 18 Set 2021
Risposto: Hernia Baby il 18 Set 2021
matlabで[1,2,3,4,5,6,7,8] の行列を [1,2; 3,4; 5,6; 7,8]のように4行2列にするにはどうすればよいでしょうか。
  2 Commenti
TT
TT il 18 Set 2021
x=1:8;
reshape(x,2,4)'
ans = 4×2
1 2 3 4 5 6 7 8
raonich
raonich il 18 Set 2021
thank you!!

Accedi per commentare.

Risposta accettata

Hernia Baby
Hernia Baby il 18 Set 2021
@TT さんが記述しているようにreshape 関数をお使いください
x = 1:8
x = 1×8
1 2 3 4 5 6 7 8
ここで注意すべきは普通に4行2列にするとうまくいきません
reshape(x,4,[])
ans = 4×2
1 5 2 6 3 7 4 8
なので一度2行4列にして、転置することで実現できます
x = reshape(x,2,[])
x = 2×4
1 3 5 7 2 4 6 8
x = x.'
x = 4×2
1 2 3 4 5 6 7 8

Più risposte (0)

Categorie

Scopri di più su Statistics and Machine Learning Toolbox in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!