Converting array to column matrix
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
How can we convert the below array (50*50) into a column array which only has the first column (50*1)

0 commentaires
Réponse acceptée
Arif Hoq
le 8 Mar 2022
Modifié(e) : Arif Hoq
le 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)
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!