I want to convert a single cell to a float number

11 Ansichten (letzte 30 Tage)
Jonas Müller
Jonas Müller am 3 Apr. 2022
Kommentiert: Jonas Müller am 3 Apr. 2022
i have a cell
celltest = {23.234,123.45};
And I want to convert the first number to float
something like this:
cell2float(celltest(1))

Antworten (3)

David Hill
David Hill am 3 Apr. 2022
Should already be a float double. If not then,
double(celltest{1})

the cyclist
the cyclist am 3 Apr. 2022
I'm confused. The way you have defined celltest, the first element is already a (double-precision) floating-point number:
celltest = {23.234,123.45};
class(celltest{1})
ans = 'double'
  1 Kommentar
Jonas Müller
Jonas Müller am 3 Apr. 2022
thank you. My Problem was I used the wrong brackets celltest(1) instead of celltest{1}

Melden Sie sich an, um zu kommentieren.


KSSV
KSSV am 3 Apr. 2022
celltest = {23.234,123.45};
class(celltest{1})
ans = 'double'
If it is double, nothing need to be done. If it is a string, read about str2num, str2double.

Kategorien

Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by