extract a number from 1*1 cell
35 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
alpedhuez
il 15 Dic 2020
Commentato: Stephen23
il 16 Dic 2020
I have
tbl2 = 1*1 cell array
{[1.29]}
Name Size Bytes Class Attributes
tbl2 1x1 112 cell
How can one extract a double from this cell array?
0 Commenti
Risposta accettata
Image Analyst
il 15 Dic 2020
value = tbl{1} % Extract 1.29 from the cell
I think you should really read the FAQ so you get a good intuitive feel for how to use cell arrays and when to use braces, brackets, and parentheses:
1 Commento
Vedere anche
Categorie
Scopri di più su Matrix Indexing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!