필터 지우기
필터 지우기

Matrix number format not a double

조회 수: 1 (최근 30일)
Philosophaie
Philosophaie 2014년 2월 8일
댓글: Walter Roberson 2014년 2월 9일
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

답변 (1개)

Walter Roberson
Walter Roberson 2014년 2월 8일
fprintf('%.10e %.10e %.10e %.10e\n', Affinity)
or
format f
disp(Affinity)
  댓글 수: 2
Philosophaie
Philosophaie 2014년 2월 9일
In need something to replace "double" that will show floating point numbers. Just a word.
Walter Roberson
Walter Roberson 2014년 2월 9일
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.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by