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

8 次查看(过去 30 天)
Edison
Edison 2022-12-29
回答: Voss 2022-12-29
what does the above code means

回答(1 个)

Voss
Voss 2022-12-29
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 '

类别

Help CenterFile Exchange 中查找有关 Numeric Types 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by