Adding Stars

7 visualizaciones (últimos 30 días)
joseph Frank
joseph Frank el 29 de Mayo de 2011
Hi,
Is it possible to add a star superscript next to a number. Example A=0.06. is it possible to say if A<0.06 add a * to A to make it A=0.06*?

Respuesta aceptada

Oleg Komarov
Oleg Komarov el 29 de Mayo de 2011
Yes but the number will be converted to a string:
A = rand(1);
if A < 0.06
As = sprintf('%.3f*',A);
end

Más respuestas (0)

Categorías

Más información sobre Data Type Conversion en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by