Round number to just 2 decimals cases

3 Ansichten (letzte 30 Tage)
Tiago Dias
Tiago Dias am 7 Dez. 2018
Kommentiert: Tiago Dias am 7 Dez. 2018
Hi,
I want to round A
A = [47.1847 18.78417 8.7849 3.3514]';
B = round(A,2)
C = floor(A*100)/100
so i can get
result = [ 47.18 18.78 8.78 3.35]
but when i use round or floor, i get the 3rd and 4th deciaml cases as 0

Akzeptierte Antwort

madhan ravi
madhan ravi am 7 Dez. 2018
A = [47.1847 18.78417 8.7849 3.3514];
result=fix(A*100)./100
  3 Kommentare
madhan ravi
madhan ravi am 7 Dez. 2018
ok so ? then try
result=sprintf('%.2f',result) % try this at the end
Tiago Dias
Tiago Dias am 7 Dez. 2018
I want without the zeros, since it is for ploting, I dont want the zeros to appear in the annotation i am making

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Language Fundamentals 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