convert cell to integer
195 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have a 1*1 cell in which its content is ineger. I need to convert the content to integer (no cell anymore just like a number itself)
how can I do that?
I tied cell2mat but did not work. It is like this now:
kar =
1×1 cell array
{[3]}
3 Kommentare
madhan ravi
am 16 Aug. 2019
whos kar % Paste the results from command window here
Antworten (1)
Star Strider
am 16 Aug. 2019
If ‘kar’ is initially:
kar = {{[3]}};
try this:
n = cell2mat(kar{:})
producing:
n =
3
2 Kommentare
Siehe auch
Kategorien
Mehr zu Data Type Conversion 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!