Converting array to column matrix
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Amy Topaz
am 8 Mär. 2022
Kommentiert: Amy Topaz
am 8 Mär. 2022
How can we convert the below array (50*50) into a column array which only has the first column (50*1)

0 Kommentare
Akzeptierte Antwort
Arif Hoq
am 8 Mär. 2022
Bearbeitet: Arif Hoq
am 8 Mär. 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)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!