How to concatenate the rounded digits of a number and a string?

10 views (last 30 days)
Hi everyone,
I am trying to concatenate a rounded number (in the 2nd digit after decimal) and string value, so that:
x= 1.361620214248647
star = '***'
xstar = sprintf('%d%s',round(x,3,'significant'), star)
I would expect the output to be 1.36***, rather than 1.360000e+00***

Accepted Answer

madhan ravi
madhan ravi on 12 Oct 2018
Edited: madhan ravi on 12 Oct 2018
xstar=sprintf('%.2f%s',round(x,3,'significant'),star)

More Answers (1)

KALYAN ACHARJYA
KALYAN ACHARJYA on 12 Oct 2018
x=1.361620214248647;
star='***';
xstar=sprintf('%f%s',round(x,3,'significant'),star)
  2 Comments
gsourop
gsourop on 12 Oct 2018
Hi there,
Thank you for answering my question. Nevertheless, the answer I get 1.360000***, but I would expect 1.36***, instead.

Sign in to comment.

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!