How do I cut a vector from the end of a vector of a certain length and keep it in an independent vector

56 visualizaciones (últimos 30 días)
How do I cut a vector from the end of a vector of a certain length and keep it in an independent vector
A=[1 2 3 4 5 6 7 8 9]
result
B=[1 2 3 4 5 6 7]
C=[8 9]

Respuesta aceptada

Chunru
Chunru el 31 de Jul. de 2021
A=[1 2 3 4 5 6 7 8 9]
A = 1×9
1 2 3 4 5 6 7 8 9
cutpoint = 7;
B=A(1:cutpoint)
B = 1×7
1 2 3 4 5 6 7
C=A(cutpoint+1:end)
C = 1×2
8 9
  7 comentarios

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by