Your comments
matrix sent to pavel@advanpix.com
clear all
digito=2000;
load variables.mat
s=pinv(a)*den; %a\den;
??? Error using ==> mp>mp.pinv at 2964
s=pinv(a)*den; %a\den;
could create length mantissa and exponent precision real, arbitrary?
would political project create real length and precision, arbitrary ?
Using the code that I shared with you, was a way to find the orders of magnitude of R and Rtc
mp.Digits(N);
ExpMax=fix(log(mp.realmax)/log(10))
ExpMin=fix(log(mp.realmin)/log(10))
___________________________________
N=100
ExpMax = 323228495.0000
ExpMin =-323228496.0000
N=1000
ExpMax = 323228495.0000
function Num=Random1(Max,Min)
r=mp(rand(1,1));
Num=abs(Min+(Max-Min)*r);
---------------------------------------------------
% main program
clear all
% Estimator order parameters
mp.Digits(34)
GMinR=mp('0');
GMinRtc=mp('0');
GMinc=mp('0');
fre= mp('0.13');
for j=1:30
j
for k=1:1000
R=Random1(GMinR,GMaxR);
Rtc=Random1(GMinRtc,GMaxRtc);
c=Random1(GMinc,GMaxc);
L(k,:)=[R Rtc c Fun];
L=sortrows(L,4);
GMaxR=L(1,1);
GMaxRtc=L(1,2);
end
GMaxR
GMaxRtc
GMaxc
Fun = NaN
function Num=Random1(Max,Min)
Num=Min+(Max-Min)*r;
---------------------------------
main program
mp.Digits(1000000)
GMin=mp(0);
GMax=mp(1e+5000)
Number=abs(Random1(GMin,GMax))
---------------------------------
OUT
GMax=inf
I thought you mean the next version of Multiprecision Computing Toolbox for MATLAB ADVANPIX
si sera en la próxima versión y en muy pocos días puedo esperar
if it will be in the next version and in a few days I can wait
Customer support service by UserEcho
??? Error using ==> mp>mp.pinv at 3009