Converting array to column matrix
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Amy Topaz
el 8 de Mzo. de 2022
Comentada: Amy Topaz
el 8 de Mzo. de 2022
How can we convert the below array (50*50) into a column array which only has the first column (50*1)

0 comentarios
Respuesta aceptada
Arif Hoq
el 8 de Mzo. de 2022
Editada: Arif Hoq
el 8 de Mzo. de 2022
use colon(:). each variable will be forced to be a column vector
col_vector=Eflevel(:)
if you want extract first 50 data(50*1), then
output=col_vector(1:50,1)
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!