Converting array to column matrix

How can we convert the below array (50*50) into a column array which only has the first column (50*1)

 Risposta accettata

Arif Hoq
Arif Hoq il 8 Mar 2022
Modificato: Arif Hoq il 8 Mar 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)

3 Commenti

Yeah tried that but it is getting converted into 2500*1. I need just the first column (50*1)
Arif Hoq
Arif Hoq il 8 Mar 2022
Modificato: Arif Hoq il 8 Mar 2022
do you want first 50 rows ? please attach your data. or try
output2=Eflevel(1:50,1)
Thank you

Accedi per commentare.

Più risposte (0)

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by