Effacer les filtres
Effacer les filtres

Matrix number format not a double

3 vues (au cours des 30 derniers jours)
Philosophaie
Philosophaie le 8 Fév 2014
Commenté : Walter Roberson le 9 Fév 2014
I need to format not with a double :
number * 2^(integer)
but with a base 10 format :
floatingpointnumber * 10^(integer)
or
(floatingpointnumber)E(integer)
for i=1:4
for j=1:4
for k=1:4
Affinity(i,j,k)=double(subs(Affinity0(i,j,k),{r,h},{rr,theta}))
end
end
end

Réponses (1)

Walter Roberson
Walter Roberson le 8 Fév 2014
fprintf('%.10e %.10e %.10e %.10e\n', Affinity)
or
format f
disp(Affinity)
  2 commentaires
Philosophaie
Philosophaie le 9 Fév 2014
In need something to replace "double" that will show floating point numbers. Just a word.
Walter Roberson
Walter Roberson le 9 Fév 2014
double() already creates the values as floating point numbers. When you use double() the internal storage will be IEEE 754 Binary Floating Point "double", 64 bit.
Anything like floatingpointnumber * 10^(integer) is a matter of display not of storage. I have shown you two different ways to change the display.
However, as long as you do not initialize your Affinity matrix to a floating point number such as 0, then you can convert your value to a symbolic number that would display the way you are looking for. To do that, change double() to vpa(). Note that the values so created will look as if they are normal MATLAB arithmetic values but will instead be symbolic numbers.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by