Filter löschen
Filter löschen

How can I cut some digits from a number?

2 Ansichten (letzte 30 Tage)
sadel
sadel am 26 Jun. 2011
How can I cut some digits from a number like this 0.0000005566?
How can I keep only the first 4 decimal digits?
I use vpa but this return something else.
b=0.0000005566
vpa(b,4)
ans =
5.566*10^(-7)
examples:
0.0000345->0
0.001234->0.0012
12.4234234->12.4234
121313.334242->121313.3342
  1 Kommentar
James Tursa
James Tursa am 26 Jun. 2011
Can you give some examples of input and desired output?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Oleg Komarov
Oleg Komarov am 26 Jun. 2011
n = 121313.334242;
fix(n*10000)/10000
  1 Kommentar
sadel
sadel am 26 Jun. 2011
hahaha I was just thinking the same!!!!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Entering Commands 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