have 3 chifre after E

조회 수: 1 (최근 30일)
Abdelhamid Ouarhaden
Abdelhamid Ouarhaden 2021년 7월 2일
답변: Star Strider 2021년 7월 2일
I am trying to have this 8.90000000E+007 but i have this just this 8.90000000E+07 i want to have 3 chifre after E
code:
fprintf(fid1,'%s%0.8E\r\n',' ',Frequence(1),)
Is there any way to do this?

답변 (1개)

Star Strider
Star Strider 2021년 7월 2일
One approach —
expstr = @(x) [x(:).*10.^ceil(-log10(abs(x(:)+(x==0)))) floor(log10(abs(x(:)+(x==0))))]; % Updated: 2021 05 04
fid1 = 1;
Frequence(:,1) = 8.90000000E+007;
fprintf(fid1,'%.8fe%+04d', expstr(Frequence(:,1)))
8.90000000e+007
As requested.
,

카테고리

Help CenterFile Exchange에서 Matched Filter and Ambiguity Function에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by