How to change the field width of an exponential notation?

5 visualizaciones (últimos 30 días)
Oscar Espinosa
Oscar Espinosa el 4 de Mayo de 2020
Editada: Stephen23 el 7 de Mayo de 2020
Hi, Im trying to change the field width and the number of digits of the exponential, I will like to looks like enginnering notation:
3.45866636216603e+002
and what I get its:
3.45866636216603e+02
The formatSpec have the next form:
%21.14e
So, I dont know what Im doing wrong, its suppose to the total numbers before e its 21, 14 of them are located after the point. But doesnt seem to be like that.
  1 comentario
Stephen23
Stephen23 el 4 de Mayo de 2020
Editada: Stephen23 el 7 de Mayo de 2020
"...its suppose to the total numbers before e its 21"
The fieldwidth does not specify the number of digits, it specifies the total number of printed characters, including leading spaces, leading zeros, the significant digits, the decimal radix, the exponent character, the exponent digits, and any sign characters. All of these are included in the field width. If the number representation is shorter than the fieldwidth the output string will be padded with leading spaces or leading zeros.

Iniciar sesión para comentar.

Respuesta aceptada

Stephen23
Stephen23 el 4 de Mayo de 2020
Editada: Stephen23 el 6 de Mayo de 2020
Given >=2 digits, ensure >=3 digits:
>> val = 3.45866636216603e2;
>> str = sprintf('%.14e',val)
str =
3.45866636216603e+02
>> str = regexprep(sprintf('%.14e',val),'(?<=\D)\d\d$','0$&')
str =
3.45866636216603e+020
Given >=1 digits, ensure >=3 digits:
>> str = regexprep(sprintf('%.14e',val),{'(?<=\D)\d$','(?<=\D)\d\d$'},'0$&')
str =
3.45866636216603e+020
A general solution that can provide any number of digits:
>> num = 3; % required number of digits
>> fun = @(s)sprintf('%0*u',num,sscanf(s,'%u'));
>> str = regexprep(sprintf('%.14e',val),'\d+$','${fun($&)}')
str =
3.45866636216603e+020
  3 comentarios
Stephen23
Stephen23 el 5 de Mayo de 2020
Editada: Stephen23 el 6 de Mayo de 2020
Please see my edited answer.
Oscar Espinosa
Oscar Espinosa el 5 de Mayo de 2020
That really work it out. Thank you Stephen.

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by