extract the number with only the first decimal number

7 次查看(过去 30 天)
I have to extract the number with only the first decimal number
Examples:
1.23 -> 1.2
2.49 -> 2.4
4.77 -> 4.7
7.51 -> 7.5

采纳的回答

Cris LaPierre
Cris LaPierre 2023-9-20
I'd look into fix or floor.
V = [1.23, 2.49, 4.77, 7.51];
v1 = floor(V*10)/10
v1 = 1×4
1.2000 2.4000 4.7000 7.5000
v2 = fix(V*10)/10
v2 = 1×4
1.2000 2.4000 4.7000 7.5000

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Multirate Signal Processing 的更多信息

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by