Extract number from cell with decimal

1 次查看(过去 30 天)
Hi,
Is there a way to extract from a cell with a number with two decimals, separatetly the value before . and separate the decimals?
number1 = a{:,12}; %here extract the full number 44.10 and I want number 1 = 44 and number2 = 10

采纳的回答

Dyuman Joshi
Dyuman Joshi 2022-6-8
y={44.10};
befdec=floor(y{1})
befdec = 44
aftdec=rem(y{1},1)
aftdec = 0.1000

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

产品


版本

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by