'p%d=%.8f\n',i,c what doess it mean

8 views (last 30 days)
Edison
Edison on 29 Dec 2022
Answered: Voss on 29 Dec 2022
what does the above code means

Answers (1)

Voss
Voss on 29 Dec 2022
The part before the first comma ('p%d=%.8f\n') looks like a format specifier, as would be used in sprintf or fprintf. It means: print a "p" followed by an integer followed by "=" followed by a floating-point number with 8 decimal places followed by a new-line character.
The i and c would be subsequent arguments so that i would be the integer printed and c would be the floating-point number.
For example:
i = 3;
c = 0.123;
sprintf('p%d=%.8f\n',i,c)
ans =
'p3=0.12300000 '

Categories

Find more on Numeric Types in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!