How to move the decimal

4 visualizaciones (últimos 30 días)
janani subraveti
janani subraveti el 6 de Mayo de 2017
Respondida: Stephen23 el 6 de Mayo de 2017
Hi,I have my matlab code in this way where T array has values in this way 1.3982e-06,1.4056e-06....
T=20*(10^-12)*T;
but i want my T array should store the values in this way 1398.2e-09,1405.6e-09,.. or in this way 1398.2,1405.6

Respuestas (1)

Stephen23
Stephen23 el 6 de Mayo de 2017
>> T = [1.3982e-06,1.4056e-06];
>> T * 1e6
ans =
1.3982 1.4056

Categorías

Más información sobre Data Types 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