Borrar filtros
Borrar filtros

how to append my data?

1 visualización (últimos 30 días)
PARVATHY NAIR
PARVATHY NAIR el 21 de Dic. de 2022
Movida: VBBV el 28 de Dic. de 2022
let my data be
1 1
2 1
2 2
2 3
3 4
4 5
5 6
6 6
and i want it as
1
2
2
2
3
4
5
6
1
1
2
3
4
5
6
6

Respuestas (1)

VBBV
VBBV el 21 de Dic. de 2022
D = [1 1
2 1
2 2
2 3
3 4
4 5
5 6
6 6]
D = 8×2
1 1 2 1 2 2 2 3 3 4 4 5 5 6 6 6
D = reshape(D,[],1)
D = 16×1
1 2 2 2 3 4 5 6 1 1
  1 comentario
Jan
Jan el 21 de Dic. de 2022
Movida: VBBV el 28 de Dic. de 2022
Or: D = D(:)

Iniciar sesión para comentar.

Categorías

Más información sobre Interpolation en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by