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

11 visualizaciones (últimos 30 días)
raonich
raonich el 18 de Sept. de 2021
Respondida: Hernia Baby el 18 de Sept. de 2021
matlabで[1,2,3,4,5,6,7,8] の行列を [1,2; 3,4; 5,6; 7,8]のように4行2列にするにはどうすればよいでしょうか。
  2 comentarios
TT
TT el 18 de Sept. de 2021
x=1:8;
reshape(x,2,4)'
ans = 4×2
1 2 3 4 5 6 7 8
raonich
raonich el 18 de Sept. de 2021
thank you!!

Iniciar sesión para comentar.

Respuesta aceptada

Hernia Baby
Hernia Baby el 18 de Sept. de 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

Más respuestas (0)

Categorías

Más información sobre Statistics and Machine Learning Toolbox en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!