Transferring data from a cell array to a vector
Mostra commenti meno recenti
Hello, I have some data in the cell arrays
Atlas{i} ; Atlas{1} ans=122 ; Atlas{2} ans=12 ;
can i convert this data into vector?
Risposte (2)
"can i convert this data into vector?"
>> Atlas = {122,12} ;
>> vec = [Atlas{:}]
vec =
122 12
Lev Mihailov
il 9 Lug 2019
Categorie
Scopri di più su Downloads in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!