How do I isolate a specific column within a vector
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Laura T
el 8 de Dic. de 2021
Comentada: Laura T
el 8 de Dic. de 2021
Hi Guys,
How do i isolate a specific column within a vector? Like, how do i extract the 4th column only from a 5x5 matrix? What do i code to specifcally get the 4th column values to be presented as a new vector?
TIA
0 comentarios
Respuesta aceptada
Atsushi Ueno
el 8 de Dic. de 2021
x = rand(5,5)
y = x(:,4) % extract the 4th column only from a 5x5 matrix
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MATLAB 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!