Filter löschen
Filter löschen

exp-mantissa part alone

2 Ansichten (letzte 30 Tage)
x
x am 11 Sep. 2011
x=4096; expx = large_exp(x) disp(expx);
how to get only the first part(mantissa part of the answer alone to find exponential and use it in program

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 11 Sep. 2011
x=4096; expx = large_exp(x); mantissa = expx(1);
  6 Kommentare
x
x am 12 Sep. 2011
sir where to use the format?why these mantissa values are different ?where to use format sir
Walter Roberson
Walter Roberson am 12 Sep. 2011
As the first executable line of your program, put
format long g
After that, you will not get those silly 1.0e+007 * displays, and you will be able to see why the mantissa showed up as 1.3375 instead of 0.000 .

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

the cyclist
the cyclist am 11 Sep. 2011
I am not sure what you mean by large_exp(). I assume it is a function you wrote, or maybe it is in a toolbox that I do not have. Regardless, I expect that you can get at what you need by using the floor() function.
  2 Kommentare
x
x am 11 Sep. 2011
inorder to calculate exp me used a function call and it gives expx =
1.0e+003 *
0.0074 1.7780 as my value for fimdimg exp(4096) the ans is the mantissa part alone ie)i want to get only 1.0e+003 *
0.0074 alone for this wt is to b done
x
x am 11 Sep. 2011
function expx = large_exp(x)
t = x/log(10);
expx = [10^(t-floor(t)), floor(t)];
this s the fuction pgm

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Graphics Object Programming finden Sie in Help Center und File Exchange

Tags

Noch keine Tags eingegeben.

Community Treasure Hunt

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

Start Hunting!

Translated by