How can we make the following spectral relaxation code to run?
You are now following this question
- You will see updates in your followed content feed.
- You may receive emails, depending on your communication preferences.
An Error Occurred
Unable to complete the action because of changes made to the page. Reload the page to see its updated state.
Show older comments
0 votes
The dimensionless sisko models to be solved by the spectral relaxation method are:

function [D, x] = cheb(N)
if N == 0
D = 0;
x = 1;
return
end
x = cos(pi * (0:N) / N)';
c = [2; ones(N - 1, 1); 2] .* (-1).^(0:N)';
X = repmat(x, 1, N + 1);
dX = X - X';
D = (c * (1 ./ c)')./(dX + (eye(N + 1)));
D = D - diag(sum(D, 2));
end
clear; %clc;
N = 120;
[D,x] = cheb(N);
% Parameter initialization
% A = 1; %Material parameter
M = 1; %Magnetic field
n = 1; % Power law index
m = 1; %Velocity power
gamma = 1; %Chemical reaction parameter
Nt = 0.1; %Thermophoresis number
Nb = 0.1; %Brownian motion
GrT = 1; %Thermal Grashof number
GrC = 2; %Concentration Grashof number
Rd = 1; %Radiation parameter
Sc = 1; %Schmidt number
Pr = 3; %Prandtl number
Ec = 1; %Eckert number
%Sk=linspace(0,0.5,6); % Domain for the Skin friction coeeficient,Nusselt number and sherwood number
% Constant calculation
Costant = (m*(2*n - 1) + 1) / (n + 1);
iterations = 30;
tol = 1e-8;
tic
p = 1; %counter
Vec =[ 1 2 3 4];
for mm = 1: length(Vec)
A= Vec(mm);
Lmin = 1; MaxL = 10;
L = Lmin;
while L < MaxL
scale = 2/L;
D1 = scale*D; D2 = (scale^2*D^2) ; D3 = (scale^3*D^3);
y = L*(x+1)/2; I = eye(N+1);
gr = exp(-y);hr = exp(-y); thetar = exp(-y); phir = exp(-y);
fr = 1- exp(-y);
it = 1;
thetanorm = 1; phinorm = 1;hnorm = 1; gnorm = 1;
NORMS = [gnorm hnorm phinorm thetanorm];
while max(NORMS) > tol && it < iterations
%=================================================================================
%Momentum equation
A1 = (A+n*(-D1*diag(gr)).^(n-1))*D2+Costant*fr*D1-M.*I; %Left hand side A1*g_{r+1}=B1
A1(N+1,:) = 0; A1(N+1,N+1) = 1;
A1(1,:) = 0; A1(1,1) = 1;
B1 =m*gr^2 -GrT*thetar - GrC*phir; %Right hand side
B1(1) = 0; B1(N+1) = 1;
grt = A1\B1;
gnorm = norm(grt-gr,inf);
gr = grt;
gr1 = D1*gr;
%================================================================================
%Energy equation
A2 =(1/Pr)*(1+(4/3)*Rd)*D2+Costant*fr*D1+Nb*(D1*phir)*D1;
A2(N+1,:) = 0; A2(N+1,N+1) = 1;
A2(1,:) = 0; A2(1,1) = 1;
B1 = -M*Ec*(gr)^2-Nt*(D1*thetar)^2-Ec*A*(D1*gr)^(2)-Ec*(-D1*gr)^(n+1);
B1(1) = 0; B1(N+1) = 1;
thetart = A2\B1;
hnorm = norm(thetart-thetar,inf);
thetar = thetart;
thetar1 = D1*thetar;
%=======================================================================================
%Concentration equation
A3 = D2+Sc*Costant*fr*D-gamma*I ;
A3(N+1,:) = 0; A3(N+1,N+1) = 1;
A3(1,:) = 0; A3(1,1) = 1;
B3 = -(Nt/Nb)*(D2*thetar);
B3(1) = 0;
B3(N+1) = 1;
phirt = A3\B3;
thetanorm = norm(phirt-phir,inf);
phir = phirt;
phir1 = D1*phir;
%--------------------------------------------------------------------------
% A4 = D2 + Le*diag(fr)*D1;
% A4(N+1,:) = 0; A4(N+1,N+1) = 1;
% A4(1,:) = 0; A4(1,1) = 1;
% B4 = -(Nt/Nb)*(D2*thetar);
% B4(1) = 0;
% B4(N+1) = 1;
% phirt = inv(A4)*B4;
% phinorm = norm(phirt-phir,inf);
% phir = phirt;
% phir1 = D1*phir;
%--------------------------------------------------------------------------
fprintf('%10.0f\t %10.10f\t %10.10f\t %10.10f\n', it,-gr1(N+1),-thetar1(N+1),-phir1(N+1));
it = it + 1;
NORMS = [gnorm hnorm phinorm thetanorm];
Edecoupled(it-1) = max(NORMS);
end
thetarr(:,p+1) = thetar1(N+1); %f'(eta) after convergence
phirr(:,p+1) = phir1(N+1);
grr(:,p+1) = gr1(N+1);
dtheta = abs(thetarr(:,p+1) - thetarr(:,p));
dphi = abs(phirr(:,p+1)-phirr(:,p));
dg = abs(grr(:,p+1)-grr(:,p));
dL = [dtheta dphi dg];
if all(dL) < tol
% if dtheta <tol
break
end
L = L + 1;
p = p + 1; %Counter
end
switch mm
case 1
figure(1)
plot(1:length(Edecoupled),log(Edecoupled),'ko-','markersize',5,'MarkerFaceColor','k')
clear Edecoupled;
hold on
figure(2)
plot(y,gr,'k','linewidth',1.5);
hold on
figure(3)
plot(y,thetar,'k','linewidth',1.5);
hold on
figure(4)
plot(y,phir,'k','linewidth',1.5);
hold on
case 2
figure(1)
plot(1:length(Edecoupled),log(Edecoupled),'k*-','markersize',5,'MarkerFaceColor','k')
clear Edecoupled;
figure(2)
plot(y,gr,'r:','linewidth',1.5);
hold on
figure(3)
plot(y,thetar,'r:','linewidth',1.5);
hold on
figure(4)
plot(y,phir,'r:','linewidth',1.5);
hold on
case 3
figure(1)
plot(1:length(Edecoupled),log(Edecoupled),'k^-','markersize',5,'MarkerFaceColor','k')
clear Edecoupled;
figure(2)
plot(y,gr,'g--','linewidth',1.5);
hold on
figure(3)
plot(y,thetar,'g--','linewidth',1.5);
hold on
figure(4)
plot(y,phir,'g--','linewidth',1.5);
hold on
case 4
figure(1)
plot(1:length(Edecoupled),log(Edecoupled),'kd-','markersize',5,'MarkerFaceColor','k')
clear Edecoupled;
figure(2)
plot(y,gr,'b--','linewidth',1.5);
hold on
figure(3)
plot(y,thetar,'b--','linewidth',1.5);
hold on
figure(4)
plot(y,phir,'b--','linewidth',1.5);
hold on
case 5
figure(1)
plot(1:length(Edecoupled),log(Edecoupled),'kp-','markersize',5,'MarkerFaceColor','k')
clear Edecoupled;
figure(2)
plot(y,gr,'b---','linewidth',1.5);
hold on
figure(3)
plot(y,thetar,'b---','linewidth',1.5);
hold on
figure(4)
plot(y,phir,'b---','linewidth',1.5);
draw
hold on
% case 5
% figure(1)
%plot(1:length(Edecoupled),log(Edecoupled),'kp-','markersize',5,'MarkerFaceColor','k')
% clear Edecoupled;
end
figure(1)
xlabel('Iterations','FontSize',12)
ylabel('$\ln(E_d)$','Interpreter','Latex','FontSize',14)
legend([repmat('M=',length(MM),1) num2str(MM')])
figure(2)
legend([repmat('M= ',length(MM),1) num2str(MM')])
xlabel('$\eta$','Interpreter','Latex','FontSize',14)
ylabel('$f''(\eta)$','Interpreter','Latex','Rotation',90,'FontSize',14)
axis([0 10 0 1])
figure(3)
legend([repmat('M= ',length(MM),1) num2str(MM')])
xlabel('$\eta$','Interpreter','Latex','FontSize',14)
ylabel('$\theta(\eta)$','Interpreter','Latex','Rotation',90,'FontSize',14)
axis([0 10 0 1])
figure(4)
legend([repmat('M= ',length(MM),1) num2str(MM')])
xlabel('$\eta$','Interpreter','Latex','FontSize',14)
ylabel('$\phi(\eta)$','Interpreter','Latex','Rotation',90,'FontSize',14)
axis([0 10 0 1])
%fprintf('%2.0f\t %2.0f\t %2.0f\t %2.0f\t %2.0f\t %2.0f\t %2.0f\t %10.8f\t %10.8f\n',G_r,K_r,it,L,N,pr1(N+1),thetar1(N+1));
end
Arrays have incompatible sizes for this operation.
toc
Accepted Answer
Walter Roberson
on 22 Apr 2026
The actual error message is
Error using *
Incorrect dimensions for matrix multiplication. Check that the number of columns in the first matrix matches the number of rows in the second matrix. To operate on each element
of the matrix individually, use TIMES (.*) for elementwise multiplication.
Error in
sisko (line 57)
A1 = (A+n*(-D1*diag(gr)).^(n-1))*D2+Costant*fr*D1-M.*I; %Left hand side A1*g_{r+1}=B1
(A+n*(-D1*diag(gr)).^(n-1))*D2 is 121 x 121
Costant is 1 x 1
fr is 121 x 1
D1 is 121 x 121
M.*I is 121 x 121
So you have the problem that you are using the * operation between a 121 x 1 and a 121 x 121.
Now,
fr = 1- exp(-y);
and
y = L*(x+1)/2;
where L is scalar and x is 121 x 1, so y is 121 x 1.
In turn
[D,x] = cheb(N);
Inside cheb()
x = cos(pi * (0:N) / N)';
which clearly forms a row vector and then transposes it into a column vector. So x is going to be a column vector, not an array, so it makes sense that by the time fr is formed that fr is a column vector, and thus that it is an error to use the * operation between 121 x 1 column vector fr and 121 x 121 array D1.
You need to decide if you want is fr'*D1 -- which would make it a 1 x 121 that is * by 121 x 121, giving a 1 x 121 result. It is permitted to + between the 121 x 121 array before that on the A1 line, but it is not necessarily what you want.
You need to decide if what you want is fr.*D1 -- which would make it 121 x 1 .* 121 x 121 which would produce a 121 x 121 result.
But possibly you are expecting fr to be 121 x 121 at that point. If so then you are not constructing it properly.
3 Comments
P
on 22 Apr 2026
Edited: Walter Roberson
on 22 Apr 2026
But is there any way we can imrpove the code:
clear; %clc;
N = 120;
[D,x] = cheb(N);
% Parameter initialization
% A = 1; %Material parameter
M = 1; %Magnetic field
n = 1; % Power law index
m = 1; %Velocity power
gamma = 1; %Chemical reaction parameter
Nt = 0.1; %Thermophoresis number
Nb = 0.1; %Brownian motion
GrT = 1; %Thermal Grashof number
GrC = 2; %Concentration Grashof number
Rd = 1; %Radiation parameter
Sc = 1; %Schmidt number
Pr = 3; %Prandtl number
Ec = 1; %Eckert number
%Sk=linspace(0,0.5,6); % Domain for the Skin friction coeeficient,Nusselt number and sherwood number
% Constant calculation
Costant = (m*(2*n - 1) + 1) / (n + 1);
iterations = 30;
tol = 1e-8;
tic
p = 1; %counter
Vec =[ 1 2 3 4];
for mm = 1: length(Vec)
A= Vec(mm);
Lmin = 1; MaxL = 10;
L = Lmin;
while L < MaxL
scale = 2/L;
D1 = scale*D; D2 = (scale^2*D^2) ; D3 = (scale^3*D^3);
y = L*(x+1)/2; I = eye(N+1);
gr = exp(-y);hr = exp(-y); thetar = exp(-y); phir = exp(-y);
fr = 1- exp(-y);
it = 1;
thetanorm = 1; phinorm = 1;hnorm = 1; gnorm = 1;
NORMS = [gnorm hnorm phinorm thetanorm];
while max(NORMS) > tol && it < iterations
%=================================================================================
%Momentum equation
A1 = (A+n*(-D1*diag(gr)).^(n-1))*D2+Costant*fr.*D1-M.*I; %Left hand side A1*g_{r+1}=B1
A1(N+1,:) = 0; A1(N+1,N+1) = 1;
A1(1,:) = 0; A1(1,1) = 1;
B1 =m*gr.^2 -GrT*thetar - GrC*phir; %Right hand side
B1(1) = 0; B1(N+1) = 1;
grt = A1\B1;
gnorm = norm(grt-gr,inf);
gr = grt;
gr1 = D1*gr;
%================================================================================
%Energy equation
A2 =(1/Pr)*(1+(4/3)*Rd)*D2+Costant*fr.*D1+Nb*(D1*phir).*D1;
A2(N+1,:) = 0; A2(N+1,N+1) = 1;
A2(1,:) = 0; A2(1,1) = 1;
B2 = -M*Ec*(gr).^2-Nt*(D1*thetar).^2-Ec*A*(D1*gr).^(2)-Ec*(-D1*gr).^(n+1);
B2(1) = 0; B2(N+1) = 1;
thetart = A2\B2;
hnorm = norm(thetart-thetar,inf);
thetar = thetart;
thetar1 = D1*thetar;
%=======================================================================================
%Concentration equation
A3 = D2+Sc*Costant*fr.*D-gamma*I ;
A3(N+1,:) = 0; A3(N+1,N+1) = 1;
A3(1,:) = 0; A3(1,1) = 1;
B3 = -(Nt/Nb)*(D2*thetar);
B3(1) = 0;
B3(N+1) = 1;
phirt = A3\B3;
thetanorm = norm(phirt-phir,inf);
phir = phirt;
phir1 = D1*phir;
%--------------------------------------------------------------------------
% A4 = D2 + Le*diag(fr)*D1;
% A4(N+1,:) = 0; A4(N+1,N+1) = 1;
% A4(1,:) = 0; A4(1,1) = 1;
% B4 = -(Nt/Nb)*(D2*thetar);
% B4(1) = 0;
% B4(N+1) = 1;
% phirt = inv(A4)*B4;
% phinorm = norm(phirt-phir,inf);
% phir = phirt;
% phir1 = D1*phir;
%--------------------------------------------------------------------------
fprintf('%10.0f\t %10.10f\t %10.10f\t %10.10f\n', it,-gr1(N+1),-thetar1(N+1),-phir1(N+1));
it = it + 1;
NORMS = [gnorm hnorm phinorm thetanorm];
Edecoupled(it-1) = max(NORMS);
end
thetarr(:,p+1) = thetar1(N+1); %f'(eta) after convergence
phirr(:,p+1) = phir1(N+1);
grr(:,p+1) = gr1(N+1);
dtheta = abs(thetarr(:,p+1) - thetarr(:,p));
dphi = abs(phirr(:,p+1)-phirr(:,p));
dg = abs(grr(:,p+1)-grr(:,p));
dL = [dtheta dphi dg];
if all(dL) < tol
% if dtheta <tol
break
end
L = L + 1;
p = p + 1; %Counter
end
switch mm
case 1
figure(1)
plot(1:length(Edecoupled),log(Edecoupled),'ko-','markersize',5,'MarkerFaceColor','k')
clear Edecoupled;
hold on
figure(2)
plot(y,gr,'k','linewidth',1.5);
hold on
figure(3)
plot(y,thetar,'k','linewidth',1.5);
hold on
figure(4)
plot(y,phir,'k','linewidth',1.5);
hold on
case 2
figure(1)
plot(1:length(Edecoupled),log(Edecoupled),'k*-','markersize',5,'MarkerFaceColor','k')
clear Edecoupled;
figure(2)
plot(y,gr,'r:','linewidth',1.5);
hold on
figure(3)
plot(y,thetar,'r:','linewidth',1.5);
hold on
figure(4)
plot(y,phir,'r:','linewidth',1.5);
hold on
case 3
figure(1)
plot(1:length(Edecoupled),log(Edecoupled),'k^-','markersize',5,'MarkerFaceColor','k')
clear Edecoupled;
figure(2)
plot(y,gr,'g--','linewidth',1.5);
hold on
figure(3)
plot(y,thetar,'g--','linewidth',1.5);
hold on
figure(4)
plot(y,phir,'g--','linewidth',1.5);
hold on
case 4
figure(1)
plot(1:length(Edecoupled),log(Edecoupled),'kd-','markersize',5,'MarkerFaceColor','k')
clear Edecoupled;
figure(2)
plot(y,gr,'b--','linewidth',1.5);
hold on
figure(3)
plot(y,thetar,'b--','linewidth',1.5);
hold on
figure(4)
plot(y,phir,'b--','linewidth',1.5);
hold on
case 5
figure(1)
plot(1:length(Edecoupled),log(Edecoupled),'kp-','markersize',5,'MarkerFaceColor','k')
clear Edecoupled;
figure(2)
plot(y,gr,'b---','linewidth',1.5);
hold on
figure(3)
plot(y,thetar,'b---','linewidth',1.5);
hold on
figure(4)
plot(y,phir,'b---','linewidth',1.5);
draw
hold on
% case 5
% figure(1)
%plot(1:length(Edecoupled),log(Edecoupled),'kp-','markersize',5,'MarkerFaceColor','k')
% clear Edecoupled;
end
figure(1)
xlabel('Iterations','FontSize',12)
ylabel('$\ln(E_d)$','Interpreter','Latex','FontSize',14)
legend([repmat('A=',length(Vec),1) num2str(Vec')])
figure(2)
legend([repmat('A= ',length(Vec),1) num2str(Vec')])
xlabel('$\eta$','Interpreter','Latex','FontSize',14)
ylabel('$f''(\eta)$','Interpreter','Latex','Rotation',90,'FontSize',14)
axis([0 10 0 1])
figure(3)
legend([repmat('A= ',length(Vec),1) num2str(Vec')])
xlabel('$\eta$','Interpreter','Latex','FontSize',14)
ylabel('$\theta(\eta)$','Interpreter','Latex','Rotation',90,'FontSize',14)
axis([0 10 0 1])
figure(4)
legend([repmat('A= ',length(Vec),1) num2str(Vec')])
xlabel('$\eta$','Interpreter','Latex','FontSize',14)
ylabel('$\phi(\eta)$','Interpreter','Latex','Rotation',90,'FontSize',14)
axis([0 10 0 1])
%fprintf('%2.0f\t %2.0f\t %2.0f\t %2.0f\t %2.0f\t %2.0f\t %2.0f\t %10.8f\t %10.8f\n',G_r,K_r,it,L,N,pr1(N+1),thetar1(N+1));
end
1 8.4330268018 -3.2683815562 5.5198232644
2 -18.0896090144 -6.9951535092 9.0879374760
3 89.4517703149 -18.8008722199 20.9013186764
4 -195.5016840007 -41.2179766130 43.2087933035
5 463.1249338778 -150.2165526968 152.3197320826
6 -629.8272356771 -236.1514147706 238.0904214667
7 1037.7719042633 -524.3642190176 526.4446571646
8 -728.0580918038 -245.9618958081 247.9678318153
9 479.9839824580 -148.1441111174 150.0741634646
10 664.8162221886 -865.1841511461 867.2899437303
11 -1058.4075158916 -793.7350476336 795.5190707127
12 2516.1605718986 -3355.5519634826 3357.5800473882
13 -774.5098672447 -384.9167294865 386.9329862146
14 703.6533864625 -265.4017642348 267.3044668296
15 547.5800616293 -1043.7009259422 1045.7623212765
16 -817.8652712074 -533.6800325494 535.5241906050
17 1957.4924535733 -2083.8706419985 2085.9464137818
18 -1005.8940200468 -516.5682746408 518.5352337886
19 1071.9852737675 -504.0370160215 505.9627233515
20 303.1225978217 -844.0758988134 846.1373173860
21 -801.7780758037 -564.1051861467 565.9257628124
22 2175.3116920479 -2717.4345510336 2719.4962484026
23 -941.9617162730 -502.4797995465 504.4484615781
24 1114.8021901360 -543.5351119542 545.4803751687
25 96.7531924612 -596.1764651136 598.2516435411
26 -778.5204601663 -606.7117868579 608.4941006076
27 2489.0132592340 -3821.9383844424 3823.9542748913
28 -639.1118245534 -351.6490358115 353.6567767475
29 773.9956349038 -279.5690737946 281.5335723417
1 7.8610342795 -4.7004766812 6.0623874497
2 -16.5233931760 -4.8629862132 6.0805527852
3 68.4166176223 -13.8365867633 15.1361540925
4 -139.7805176086 -34.0443023216 35.1236165445
5 303.0850675119 -113.8958942957 115.2195675609
6 -354.4122462323 -137.4749483018 138.5104141438
7 494.9489591637 -219.3699519453 220.5917446707
8 -216.9922641420 -79.5331813849 80.7889931813
9 -119.1524960564 -142.4548157780 143.2322263967
10 994.0424991601 -1658.5830904999 1659.6800541410
11 -257.0034395635 -140.2310222596 141.3938455698
12 314.7250897585 -89.3412374465 90.4811029366
13 -25.5435952036 -90.8442398309 92.1754792683
14 -324.1713042786 -250.8438011139 251.5323247492
15 1211.7575676123 -2006.2050000481 2007.2732716196
16 -218.8673337133 -136.0399557478 137.2620715573
17 238.1692315333 -62.0904844909 63.1439062513
18 106.6776887188 -183.9631471279 185.3053013365
19 -422.8764972146 -329.6114618876 330.2750566838
20 1321.4115632870 -2179.3426051329 2180.3950050751
21 -206.6168079018 -138.8147774092 140.0657736747
22 203.0475571367 -57.6579171159 58.6524767381
23 199.1134698758 -294.9281903862 296.2465702887
24 -449.2514610537 -336.6665087341 337.3767713959
25 1262.4519738089 -1880.7858112766 1881.9140319756
26 -331.4710552965 -179.3222979152 180.5108387890
27 356.5962659870 -133.2816894810 134.2641403882
28 170.9922594263 -395.5872972044 396.8233036619
29 -385.0970751434 -263.3358165491 264.1558278221
1 7.5314615473 -5.7335091967 6.6976397616
2 -13.0434143373 -4.6818807847 5.6153482163
3 49.5761251111 -9.7808419797 10.8417364932
4 -88.8517099052 -20.2072486845 21.0746522099
5 164.1784959075 -45.8855425721 46.9531996886
6 -159.0533549021 -41.9402673282 42.8532678133
7 127.6526179811 -28.9517999205 29.8108645511
8 104.4129014903 -109.8057244238 110.9562517802
9 -306.0472263031 -227.1233715474 227.4514762447
10 825.8224033453 -1179.1006548010 1179.8470164502
11 -233.2250304281 -130.0060805510 130.9938904207
12 208.7147589010 -86.0704817885 86.6565068952
13 242.3111623470 -498.8954344188 499.6397149195
14 -178.1512360907 -88.9153108950 89.7745898197
15 308.4462684217 -136.0921509993 137.1889490416
16 -177.7856468110 -54.0020953446 54.9685409914
17 3.0258502546 -53.3225657625 53.9136313242
18 471.0676675687 -651.6600477912 652.6194966409
19 -318.2083377488 -197.0149208870 197.6708986383
20 554.9823709028 -433.5157682136 434.4353129836
21 -211.9250753577 -114.9874523833 115.9588452769
22 -15.5553227482 -97.9420872847 98.3294532957
23 694.3340750949 -1404.2613752417 1404.6414381476
24 63.1748512815 -107.6530980621 108.8829603762
25 -173.3344939648 -83.9494976145 84.5311493110
26 478.4314121636 -433.6765412251 434.7885207205
27 -377.4422091244 -237.1472398689 237.7318557807
28 593.5883349282 -479.5131739949 480.3185240499
29 -148.5167680189 -149.2475256607 150.1689947566
1 7.2741055634 -6.5357707945 7.1439578269
2 -11.0912641230 -4.0690486221 4.9360617481
3 39.3450365963 -7.6705114501 8.6666262010
4 -63.4851669943 -13.9294788107 14.7682431123
5 103.4156875923 -23.3828397727 24.3634315809
6 -77.8214171628 -18.2231132402 19.1347944999
7 12.6817410851 -16.3895610452 17.1219817689
8 191.4412446940 -165.0682872175 166.0909399115
9 -270.6362817896 -193.7231578102 194.0416575354
10 569.1963088957 -660.2145369828 660.6919490428
11 -167.1938827705 -119.6031959265 120.0917442175
12 65.6782590896 -41.8828303407 42.6558800892
13 285.3466412781 -408.5210180589 409.4371876678
14 -246.7492684581 -161.0372023034 161.4494001545
15 461.9713810962 -409.5323770221 410.2948857603
16 -180.2037395605 -94.6774303936 95.3532757764
17 36.4610985190 -53.3791036027 53.9665053007
18 400.4340082552 -702.0378682630 702.5495757654
19 -128.5924274582 -68.5165893579 69.3866126844
20 159.8113187377 -45.7462015453 46.6980167147
21 -19.9791992539 -41.5879006982 42.5682465912
22 -147.9878047946 -109.8133813444 110.1433000439
23 550.5661709354 -827.7989565355 828.1754901130
24 -168.4596795018 -98.3594845162 99.1255019636
25 188.8531509560 -76.3953347514 77.1019361043
26 94.9650656095 -236.8205748563 237.4557841861
27 -164.1141264831 -98.5866312308 99.2172647121
28 406.7826415507 -371.2742167211 372.2300230811
29 -248.4420350290 -130.3584870196 130.9659412911
1 7.0620891493 -7.2387718982 7.4766644416
2 -10.3614704133 -3.1174638511 4.0681246062
3 36.2346783325 -8.3572057827 9.3931642018
4 -58.4360421722 -13.8692499078 14.7025153407
5 104.7122244586 -30.4850954657 31.5729369889
6 -98.9164518784 -29.0690079847 29.8192977764
7 88.3743043697 -20.0746166051 20.9984635923
8 41.0986973635 -59.2652206719 60.2370376599
9 -161.2349973805 -116.5633184250 116.9494854626
10 469.3924202688 -673.5640719978 673.7227455502
11 -136.2586806923 -88.8498813841 89.1078541533
12 132.3009531991 -51.7559074835 52.4245015302
13 106.2739812646 -210.9172857052 211.6001579987
14 -153.6096540513 -95.7755246086 96.4501502667
15 353.8319567553 -337.7235999337 338.5783319328
16 -186.4827565062 -98.4773379690 98.8760064500
17 149.6961548036 -66.0302052106 66.6707238541
18 174.5064865358 -367.0551897165 367.4253021240
19 -95.0483616392 -47.6044302325 48.4635816277
20 139.6010041435 -43.8461363415 44.9608160681
21 -66.1078061755 -16.9848774539 17.7948549147
22 -27.0442617190 -20.1426171948 20.9863715140
23 200.3673867027 -154.9833270027 156.0679603701
24 -217.1823315611 -136.0338741234 136.3547164171
25 352.5869648899 -285.4143942503 285.9054566412
26 -91.5832819984 -103.4292714645 103.3945441938
27 -17.1485474413 -30.1637172079 30.7987159647
28 222.6180718235 -200.3771867197 201.0936263183
29 -211.0441758247 -120.6363260792 121.3560771049
1 6.8834497342 -7.9016377115 7.7540351608
2 -10.3644452827 -3.4247007022 4.0105477660
3 39.2384935305 -16.0410476712 16.2839859915
4 -64.5747356454 -19.8972971991 20.2384602098
5 137.7534815595 -71.4265059335 71.3307019010
6 -144.8148584914 -71.8947363874 71.1189896708
7 216.1559944688 -140.4469244721 135.5955778401
8 -78.2508751312 -122.3064571614 90.6193032085
9 -73.1279582062 -856.8888446381 193.8175728846
10 -1802.9007676602 -112633.8794112617 -257613.4062411643
11 -3913390.5906080198 613159728909.9425048828 -612935117517.3320312500
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 7.715010e-17.
12 1682358968343.0192871094 -8065974162580480085458944.0000000000 8063708301990586973421568.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.484454e-38.
13 -2031221450800217139970048.0000000000 79183171192702789047423741064189104600645632.0000000000 -79160930366663497285483519240956402198380544.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 2.137677e-56.
14 697219677981119467697298008222993930800653664256.0000000000 236805388040808219345285062229686795950045683777711973453376926435508224.0000000000 -236738874571326614438991573124718566387470552174892680486428275516637184.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 8.786589e-84.
15 269148383524597269251037360431082648909483969469958094530993954253163184333020497313694759256064.0000000000 5865049490334050058876721021940234039298545957990382724884493487614249109965453855566085760980859254055198370216194035978345636328439283712.0000000000 -5863402125831454099775115185690912822982144058432388829045087982198809427025302560357372426246330469183433339574009540097604500035599335424.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.945861e-151.
16 18164656210506354229691209863617449271690820098194603468902793964323087874333229284563353272082814080046152262611590869188355600668962499096462899137103283276854279758593895035982806689775616.0000000000 NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
17 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
18 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
19 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
20 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
21 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
22 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
23 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
24 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
25 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
26 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
27 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
28 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
29 NaN NaN NaN
1 6.7301203324 -8.5480696895 8.0042004100
2 -10.8037827802 -6.8509474675 5.6740253208
3 45.5738770176 -40.3247502312 33.7607593029
4 -76.9950825046 -134.7356437258 80.6755105977
5 209.4572216240 -950.3539166318 -851.5309770072
6 -14337.2391365059 24050494196189.7265625000 -23782501303067.1679687500
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.008572e-24.
7 -34247490912405.0546875000 395931553480754440699904.0000000000 -395793370782527463096320.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.124423e-37.
8 4942686217506936349261824.0000000000 59051918478119232102299015357675590796705792.0000000000 -59031308971217751171169517668180816553836544.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.981843e-58.
9 56707428152648194580928483141791968329983852544.0000000000 434835947846600019955797042215412672492654098998911788678634534862848.0000000000 -434684187248484205887899521134747735160514016709450426970328117805056.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.833387e-81.
10 3289045538867730399016394071188540465330190913029551054473205101400730179627695669654847488.0000000000 -1777569053859936757027095038732035746092572463347981168120865762976264994396620193258322190247216673547782168166155801826672246784.0000000000 1776948670600131633287409311130021932847821250721396360551627619483657189493995916484507562574071191197835136113019306558426710016.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 2.410468e-142.
11 10339494771744166418329210770157349189281387810833304543369358649829183142857508163971503639977321017271113657211177444145803645641641701359941715721319146383801691421779762872320.0000000000 NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
12 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
13 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
14 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
15 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
16 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
17 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
18 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
19 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
20 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
21 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
22 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
23 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
24 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
25 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
26 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
27 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
28 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
29 NaN NaN NaN
1 6.5962652956 -9.1875253513 8.2390682570
2 -11.5268480621 -15.0134690908 9.6525021868
3 51.1184891739 -105.5007499295 64.2808872025
4 -164.1084542257 -1592.9985772698 408.5354080531
5 -3023.4315787472 744032286.5324237347 -942791511.4370330572
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 2.019629e-16.
6 -1042390127.3619716167 -216607203255144960.0000000000 216515895528688800.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.714084e-27.
7 581275895162316544.0000000000 -959946973459703019275338225553506304.0000000000 959542331168798750201821700835770368.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.386478e-49.
8 -70884054835372601593533034481582080.0000000000 20461064752270250600922702884201519203923257302039134208.0000000000 -20452439888245736078964589903101571255651238128333619200.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.599843e-68.
9 65661441473191997223302175791318066537627982666257467468999938734555136.0000000000 14957716688590996416916396689660283224261356522416361531014929567412849229355829939384006593186843439661056.0000000000 -14951411627045159090765813579237492261638666180905271144234673534998704464101520135693795348166821369872384.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 5.237047e-119.
10 2335302606149480421075340200498784675642541749712896400650280114464304936773109240853089234111253504172178977608354672527348374767240050900992.0000000000 14107375892634160297130547297937684755659241671126248172403130055545388879808467874490108664085360370293666873594963855502885801054207908956215222073443461946272367756855236643941241375844647043072.0000000000 -14101429271561887345375182335040896754098867859578981292105280153550306731466840911695641915268187854659333612828350318800428250540082537189179078584967897495340475204158722903379338660931453321216.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 2.301909e-209.
11 1534405505406122980901559528508868201120298403062404598754976371378120827643486372564551790522698509958878878925395494394252150846806106808110203215480718683347527271401893712321602650512867856709624866300065564340532380011973324347451126930500372208447269247007629581911584451592192.0000000000 NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
12 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
13 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
14 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
15 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
16 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
17 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
18 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
19 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
20 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
21 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
22 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
23 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
24 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
25 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
26 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
27 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
28 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
29 NaN NaN NaN
1 6.4776823913 -9.8238718258 8.4636049252
2 -12.4527154012 -29.3022092333 16.3152536781
3 51.1152122383 -285.6007310549 105.7460695107
4 -626.2811036541 -13616.8747002188 -825.6278822153
5 -79000.9737157591 42105608601.5838775635 -41899291651.9951477051
6 -25650796680.8029098511 -600378985920354688.0000000000 600079930055885312.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 7.390005e-29.
7 1107542432219417472.0000000000 490751999865442999746455537738317824.0000000000 -490507476675023046495491690755784704.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 2.382072e-49.
8 288656837004203664081842978011742208.0000000000 -8547697381090124016021434912353259209563985195602804736.0000000000 8543438386251944928433253815833318560264003378609127424.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 7.158097e-68.
9 4051616440730852354127796941110986023168962354448966439246203669446656.0000000000 -53407243851785762904121538407492176807580436156763288295005702487311144709347768502702448214350453800960.0000000000 53380633038867974259636051850369173859752479249652321381939513054512399810568660675080360583289404129280.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 5.799309e-119.
10 3314144566699131805485103549272591597062923474457685810889445852854369468210738719969247042900589228795951822287632625227824117710537621504.0000000000 -228098515873432283374446333390678770172477791147157867066586680864865522691516355185445848902338015264706203582965516232805328197947749221417466030032123494330101476466382192909776846858603200512.0000000000 227984862996126303669602630396248432959207054951603388802590541378708775945697325110298889903105418012107584496816314059429256760182559099704128374420046392903737961287202471114757804946599444480.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.971968e-207.
11 1326821802432029962141724340022400816123634154679403068010895284866131449552224865060193834240124231932905794196441884593525659268997529730811599366792939119072345095907207930446648494364685681887879448444540375128387913238620468253837829568885115265018873684773460982259253248.0000000000 NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
12 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
13 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
14 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
15 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
16 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
17 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
18 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
19 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
20 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
21 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
22 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
23 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
24 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
25 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
26 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
27 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
28 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
29 NaN NaN NaN
1 8.4354046116 -5.3720786252 7.5601102226
2 -7.7734099709 -13.4072154870 15.3810189628
3 65.0625959272 -32.2630121099 34.1900826824
4 -94.9985459539 -41.1799519602 43.0020477234
5 241.9530960876 -96.8704020851 98.7461550638
6 -280.2687419959 -110.6576604500 112.4086040005
7 452.9889611937 -196.0414134726 197.8939822236
8 -348.3560155654 -140.4819133734 142.2310872526
9 355.6211872287 -120.9181558166 122.7211564832
10 -57.1954914491 -90.8774832688 92.6871617254
11 -138.1427680629 -97.7850427923 99.5002212727
12 530.5502009406 -328.3245772864 330.1819730993
13 -554.9266565211 -301.3865933624 303.0591269079
14 796.7698267361 -464.3514974923 466.1938722733
15 -422.9445832279 -185.7361259729 187.4961321808
16 235.6569588875 -87.4182443411 89.1752680286
17 312.7046812135 -266.3091642135 268.1794856239
18 -576.2095788995 -373.3742848356 375.0073472774
19 1133.8078819952 -1011.6370090668 1013.5199916813
20 -743.4957845412 -438.9120501839 440.6081051751
21 799.8157405963 -403.5854119100 405.4183464925
22 -127.3542897404 -160.7022582552 162.5638428667
23 -324.2450305029 -243.8637562834 245.5167585703
24 1152.4098418731 -1293.9721302815 1295.8931164807
25 -925.4393684327 -719.1064250755 720.7308719020
26 1406.9177601215 -1312.4934221172 1314.3841831188
27 -568.6067375019 -270.9999856669 272.8204448319
28 202.9338229445 -111.8522131854 113.5933994543
29 724.2453380301 -880.6756893796 882.6236170157
1 7.8612535116 -7.3183195253 8.4885817695
2 -6.1524018090 -8.5098444620 9.6055344727
3 32.8115264961 -10.8869613725 11.9346460317
4 -40.2152588348 -13.8709546994 14.8659990671
5 65.7187640887 -15.2132562277 16.2373511285
6 -36.9147929847 -14.2926069440 15.3056585531
7 -2.9293096128 -13.0234934278 13.9729133223
8 115.6868229397 -45.2010079176 46.3189163182
9 -198.9437001742 -82.2097351020 83.0099328622
10 349.4514606381 -190.0657215603 191.2683837524
11 -301.5778827568 -130.9114801649 131.6913798920
12 323.2872382415 -127.2779548347 128.4188421524
13 -115.7395954202 -34.0860947590 35.0726294189
14 -71.8626203918 -51.3129773128 52.1642468107
15 376.7518403475 -298.7662060817 299.9939027631
16 -428.1782704779 -299.3780406774 299.9847844760
17 670.6365309076 -601.9635427323 603.2056166464
18 -341.9354866011 -147.5940086166 148.4378378557
19 197.2570983906 -60.8672404076 61.8631513525
20 222.8034015390 -245.5012124975 246.6847737048
21 -430.4031484018 -374.7050255733 375.2015462875
22 928.7112752694 -1317.1392354263 1318.3732360678
23 -445.8165513905 -290.9933356705 291.7646090962
24 482.6095203642 -274.3377992833 275.4746294541
25 -49.3466869919 -105.7209131443 106.8117036205
26 -266.1113283254 -243.9374277193 244.4966588114
27 905.0023999705 -1523.6055735870 1524.8093308670
28 -456.3395017414 -359.7079940339 360.4147235115
29 682.0526077807 -604.3304110951 605.5432543586
1 7.5315576497 -8.7423118459 9.3726214510
2 -3.1859822872 -7.6643592462 8.5165769723
3 16.0613179424 -5.9552024225 6.7203161769
4 -0.9700231192 -9.2488738067 10.1399501002
5 -25.9706279869 -12.3852276099 13.0142776836
6 127.0251386282 -69.0464194764 70.0700802258
7 -207.0730135498 -131.7581705562 132.0694065007
8 429.9137245878 -451.2759865405 452.2584285686
9 -315.8641049778 -227.2580151482 227.6665126665
10 426.3541923803 -345.7209549255 346.5647691036
11 -147.5926698828 -76.2289122181 77.0874069934
12 -38.0237865794 -71.0985702756 71.4637023600
13 455.3000247705 -758.9437598280 759.8555196686
14 -308.6431761543 -265.5458670468 265.8936128376
15 555.7831484652 -654.9641943598 655.8050716797
16 -251.6728755151 -140.2408329821 140.9634982777
17 156.4671187073 -64.6758795548 65.2833863167
18 223.6177861171 -377.8967388212 378.9090493230
19 -289.1377537974 -270.2362228068 270.2880678564
20 675.9429758479 -1097.0090874319 1097.7130874653
21 -286.4047834219 -206.3111319904 206.9558935868
22 344.9102776479 -223.0065472661 223.7871990346
23 -61.5822266428 -93.1235812246 94.0776870081
24 -139.0702856312 -141.0370700675 141.1742637016
25 611.5630524669 -1165.5569388165 1166.2381494463
26 -253.0346103383 -198.4402885383 199.1162553467
27 399.9970992790 -327.6342835490 328.4909949563
28 -181.7915123536 -94.4105343298 95.2473022521
29 28.5877882697 -60.1519059787 60.5124458156
1 7.2741216116 -9.7513547180 9.9199943249
2 -2.0987859742 -6.2926329203 7.0082127470
3 8.4996071542 -4.4296382913 5.1946521233
4 15.2424359423 -9.7527866490 10.6783381306
5 -53.0431005675 -22.9929757117 23.5444986565
6 161.8778892389 -113.0939406358 113.9667972933
7 -196.2832741030 -138.7980276755 139.1614122875
8 331.8161309107 -314.6583533483 315.2883037789
9 -155.2820205795 -99.6868046627 100.1630017255
10 70.7263959999 -41.2500196487 41.8433770497
11 236.5203913287 -422.7081419719 423.4572723488
12 -206.2645419299 -178.8275551286 179.0961850620
13 437.3741709555 -592.3769229239 592.8100557712
14 -216.8680199744 -153.7220608850 153.9143494649
15 229.2078492399 -131.5314004640 132.2289291770
16 15.8300685450 -127.0627928985 127.7682583570
17 -133.9505868305 -115.3305847879 115.6358383432
18 418.1481142160 -641.7202613728 642.2004693836
19 -231.1926322427 -180.3627315037 180.7850745966
20 298.0722267308 -229.6120778550 230.2558235511
21 -8.6387808116 -163.3623880727 163.9419209688
22 -83.1971332586 -73.8341851310 74.2642274518
23 341.0996224543 -472.2986914025 473.0066682530
24 -250.1715345860 -208.4670163943 208.8208437241
25 379.7263407919 -379.8573334949 380.3842678914
26 -100.7480297216 -102.6195227707 102.9860601807
27 -16.5536750772 -43.3544933944 44.0030532341
28 287.8757182409 -408.2557328288 409.1633729252
29 -249.6628435686 -217.8578381142 218.0840874387
1 7.0621422013 -10.5511310484 10.2796096523
2 -2.2287403371 -5.1425252187 5.5686934516
3 8.1331129915 -7.5918985896 7.4027272076
4 10.0798965698 -7.5404700021 6.8983585736
5 -32.5291013888 -22.2106652467 17.5913035187
6 71.5521985764 -98.9754359145 60.7052090812
7 -49.1864147543 -569.6492565281 -208.9232874116
8 -5008.5660056781 -1884284.9845755312 1815756.0267283223
9 4802279.6979951188 -60302502682.7399978638 60286482488.2656784058
10 183438353369.8988647461 -479314097407850708992.0000000000 479210160971733139456.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 9.075028e-34.
11 898303374839780737024.0000000000 127882885687821020969744625118752442155008.0000000000 -127855097623679546107059300732630361702400.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 6.496872e-55.
12 324060525344921668873557644758161928749056.0000000000 588099601037088854027116694039492102868280181112454183068368896.0000000000 -587971811072487043375303553411777119668805590656692411974025216.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.151140e-76.
13 17963783643820787220084716465377005773427245117124691464332895992076595888396435456.0000000000 198417685862095967834994195395500107748206767578478769363124674101325267385518866907657862297872898471611074952769784774656.0000000000 -198374571075063515203067324788248852214869348019192535187420976137729982807586434290823194735246315314497119507049131016192.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 2.692281e-136.
14 38140689753667947357460400531668538204514662964302616894690419158928523655764992250071484498748288278970494188958013600154039863550777258356024287004620476490186752.0000000000 NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
15 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
16 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
17 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
18 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
19 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
20 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
21 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
22 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
23 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
24 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
25 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
26 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
27 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
28 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
29 NaN NaN NaN
1 6.8835108104 -11.2559554900 10.5515366853
2 -2.9954933043 -6.3830848083 5.6518554923
3 14.5470408798 -28.0129351573 21.1781349067
4 -9.9496799232 -135.9467635422 63.6943886462
5 2.3690871853 -747.6464344943 -2732.5643777396
6 -31664.2016253481 1056471472424397.7500000000 -1052478968369573.6250000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.530362e-26.
7 -855598313486970.6250000000 20194046194101682350063616.0000000000 -20188374127284518563872768.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.042155e-38.
8 1719640231952197493528199168.0000000000 -48460041637731081003839978944948493828661182464.0000000000 48446430268803901469218119406739738884699062272.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 2.309763e-59.
9 3503666771566079959598325256426509612993111419518976.0000000000 38292240430522006186019737342702048736398194064839002326803605114046119936.0000000000 -38281484975224540040354668885236832005371420780093594561528451858077581312.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.055753e-87.
10 3166594724819347154031089750381191239262003704456196865530787460823684539252670055199700012433932288.0000000000 -2027770146393937396554409053612572188227525632567485652738980921804548152134532468608074769876538651687268166126322128657105993344385444487364608.0000000000 2027200589979434668247487811494667948277805533333232885081141265819971780866234644532956637530533187936774989889896981109837960778184159869796352.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 7.696340e-157.
11 -1311901171196511426506868621666900720521105920874239092167537584680358440248029221504145733079513173497593398827971807280712574577041770141783486716788127602383426046185111330639642098058437591040.0000000000 NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
12 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
13 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
14 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
15 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
16 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
17 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
18 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
19 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
20 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
21 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
22 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
23 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
24 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
25 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
26 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
27 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
28 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
29 NaN NaN NaN
1 6.7301860625 -11.9191459098 10.7835350900
2 -4.0970277474 -12.1019574433 8.3257377700
3 24.7863280723 -91.6037701190 57.2919206399
4 -68.0266065276 -1320.9236866944 258.5758328466
5 -3155.0941940597 -466608700.5749771595 133797429.8142275363
6 -4670572125.6339607239 -321114167226122688.0000000000 321001564323780800.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 8.001850e-27.
7 1753280937993248000.0000000000 -3856791905311393997951948542311399424.0000000000 3855445859638117253347485977763905536.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 2.449784e-49.
8 339458851510587180809053393549000704.0000000000 -473325608469760773715002983696085460732820481433986400256.0000000000 473160414727613784706133717445165384857519371185414995968.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 2.771591e-69.
9 2145498317091881908714022324960604096195219767564869965987869522464342016.0000000000 762002471919944891614488144407230614445529609574135419436225447032517385994713858067468885722373712284483584.0000000000 -761736528058869852691609305345717921197443974735093543243423677801680126110098302804633883997404459677253632.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.748812e-120.
10 2019719344235145329173189228823139182741508994499819369918894414857862562460254456541785327371963327481144001092655373364886412464948752932667392.0000000000 98299973470097543660685115584284376721266528398898728593915216869696188349712492442647593356793284602033191600744767151068762545592501282318532618595890334317197923260727935663311570057914751123456000.0000000000 -98265666134555515121055345563978020902987419913875912860799504183364218733495226569874831151248755246150912344783990614711094661492242376798715880924188920674558797356389216623398526249211887374827520.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.353616e-212.
11 913403754908165507395262662661839880365623958632507816911041157892913376393123708411051019562721651395298943761093251369335956555480554400755543701699791182977395616293381907955105805414242451658208604919327496992451341590024436747214297318547434521862832491520260239423687653487288516608.0000000000 NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
12 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
13 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
14 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
15 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
16 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
17 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
18 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
19 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
20 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
21 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
22 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
23 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
24 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
25 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
26 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
27 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
28 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
29 NaN NaN NaN
1 6.5963405271 -12.5642854404 10.9959469221
2 -5.3962314142 -23.9800931628 14.2004592114
3 34.2985470235 -243.3984150167 111.9941687247
4 -372.4505482282 -9059.0984123513 -668.8843884053
5 -53853.1631924856 1543071820234.4270019531 -1532866595240.9187011719
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 9.352276e-20.
6 -1604184716484.6669921875 96556728397175078912.0000000000 -96516027931894906880.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 4.810406e-32.
7 7026338982917287444480.0000000000 13402327841945163719220152003959453646848.0000000000 -13396678416724781847520755454442555310080.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 8.814409e-54.
8 73074136810797103192125665964330577821696.0000000000 435697743517689719056529014526189332650230189370127922757632.0000000000 -435514085734522784951604903929545778483359286967379964198912.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 2.589597e-72.
9 3566268939846089103053649365511256775913759668849801688925883076572495367634944.0000000000 73372242177138436730415413827003558800494339037500200464117288688152883606387138824978795030007280478259941413486592.0000000000 -73341313893610101885191321087811076568748631764521491564131144324989767867110790303309910430070267191508447839387648.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.409891e-128.
10 495532748799614811355984468864605970358136856378429664891541882064994916464621539741686878532989759637178159726504571769538856203938425466824765270619324416.0000000000 NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
11 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
12 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
13 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
14 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
15 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
16 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
17 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
18 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
19 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
20 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
21 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
22 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
23 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
24 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
25 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
26 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
27 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
28 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
29 NaN NaN NaN
1 6.4777686071 -13.2015939705 11.1971388472
2 -6.8292027900 -43.4252147108 23.6264282410
3 37.9376431647 -566.3221937997 130.9190826249
4 -1652.7801971089 -119311.5757338567 -20899.9528161988
5 -1027840.9310378082 1724409776.5833401680 -1774260878.6985313892
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.485002e-19.
6 112622680413.7631072998 288647090594658429960192.0000000000 -288503267873520841916416.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.315779e-37.
7 118985072223254088777728.0000000000 144865705788831819910929885588558228488192.0000000000 -144793524677864076571181644772331891982336.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 9.052244e-55.
8 61383337503971414572192304946608148842545152.0000000000 -4531849767557790443315217788756306539907573437360331728720433774592.0000000000 4529591717944318923909804581003168278487621547278231022988634882048.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 6.042426e-80.
9 694531398445578650096420325068657893741384592525628700540273636348893193925057992196096.0000000000 12639635039723867897031623970241054955883926163043530623039221099773066914414004732854449579317132168421855966756063360248184832.0000000000 -12633337186864708523662496500740873988556368695905632520546583062873520750357858170889420100492521226126864680625414367367659520.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 4.866152e-141.
10 113761378016098670109833638337798613924270799160842667623798494988474473822796923510705391193276914554637211977102588974597240957637509227380191037332405539980373415218380800.0000000000 NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
11 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
12 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
13 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
14 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
15 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
16 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
17 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
18 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
19 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
20 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
21 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
22 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
23 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
24 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
25 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
26 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
27 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
28 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
29 NaN NaN NaN
Warning: Ignoring extra legend entries.
Warning: Ignoring extra legend entries.
Warning: Ignoring extra legend entries.
Warning: Ignoring extra legend entries.
1 8.4340342223 -7.4757624378 9.6003838878
2 2.5399998132 -24.8088425834 26.6568524428
3 60.5245286838 -67.7348805391 69.4614125474
4 -2.4970015508 -111.4980489028 113.0835605806
5 189.7168504258 -269.9932303468 271.4563260220
6 113.4835744373 -542.2829832995 543.3441924576
7 725.4588635006 -2791.0610410236 2790.3429829852
8 3699.9230394727 -46138.8592219441 46110.4397656437
9 75624.5876456930 -5054688.9541233117 5053158.2212743172
10 11582130.3576900978 -1572648338.8475663662 1571672611.0993316174
11 126815418363.6703643799 -112618777041867264.0000000000 112616321543241488.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 5.767247e-25.
12 12472597339237650432.0000000000 34466429215418663800772413620224.0000000000 -34465869340043060898263052845056.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 9.287420e-45.
13 84941281572695273263279259546288128.0000000000 -10496779808304578184091379413976381687226208678654427267072.0000000000 10496609297484332853365171532324553556396128512190982389760.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.429081e-71.
14 2091004989772422744942949219793520385289933758364160907156803026944.0000000000 -14095806383931237067726623040099622254205654300708392134163533709198605242806918277873564385280.0000000000 14095577410136166624632926233402549396693552225017365565106856302675570890108994683870140956672.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 7.367606e-107.
15 310620121795800680127789945781829965158090220159514911567538221402618163576580964017140906877025693955053574689462334195262029824.0000000000 -93175821779803726586679624350771655909825803406501125205071883736145097765799074858111752723530159335257314149388327322774814332030035868284659284715330028962010152652487398774538240.0000000000 93174308221732437438844294132871617880557235434270463193120828496301376083040624896862900339796222635679396410797441886803809462909163317279424950696930074591647846868046257823154176.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.460794e-194.
16 -7638459523908609316657461275232966159066812052416552828683935006584278827632902963061059742206688686366488970111847838547549491373273595498439622619945262468446388906989568554386887550811638852743167579941043315500872545470785292579574262211522756345856.0000000000 NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
17 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
18 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
19 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
20 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
21 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
22 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
23 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
24 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
25 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
26 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
27 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
28 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
29 NaN NaN NaN
1 7.8611066279 -9.9361544044 10.9147680972
2 4.2184615023 -17.5883145124 18.5690748630
3 15.8198692545 -14.2768377699 15.1272786283
4 2.7055858308 -20.1231465390 20.9600741595
5 12.4125016976 -19.7931436243 20.6408500008
6 16.4281979774 -18.8050157530 19.6160439795
7 -0.4555261039 -21.8924060603 22.7305243799
8 15.2632960899 -18.5595956567 19.3696308014
9 27.0692420299 -23.8776793456 24.7345754817
10 -37.4447827931 -23.3560618373 24.1220733676
11 95.1092704958 -39.3299417581 40.2370662344
12 -91.5386980666 -35.2282507477 35.9527626809
13 121.9102089655 -44.1383197919 45.0509015041
14 -70.9034290152 -27.6109171979 28.3817231873
15 49.2868351124 -21.6768573180 22.5006085362
16 38.3522104529 -30.8917528464 31.7883602709
17 -85.3355210190 -38.1331903909 38.8036186701
18 189.2804497898 -101.3962853619 102.4079867652
19 -196.8931651436 -93.3116980307 93.8819128799
20 281.9252109117 -163.7395567771 164.7743798888
21 -208.8199358312 -90.5593094393 91.1901525350
22 210.9488608411 -83.4088434047 84.3427304430
23 -70.8652196227 -34.8933978537 35.7338772830
24 -33.6410937767 -34.9403376324 35.5921609878
25 243.9215606322 -201.6456253404 202.7383439655
26 -311.6183792297 -235.4162645546 235.7474104775
27 568.4325174848 -664.0211483085 665.1754609970
28 -389.7336618001 -295.6436136897 296.0677040922
29 512.3153731415 -447.8452110248 448.9446967655
1 7.5315840148 -11.7511133784 12.0476020387
2 6.6714004827 -16.3158043075 17.0295100927
3 -1.0647986591 -7.3088624900 7.8638310027
4 38.8793912590 -24.0979013117 24.9075713908
5 -76.4777821484 -36.8333960191 37.1247024346
6 204.7218847747 -183.4809736963 184.3731379805
7 -239.5095409877 -212.6542645424 212.5504110119
8 488.7183171504 -784.1228266770 784.5707166479
9 -294.9579509824 -289.0764318165 289.1146072281
10 503.5040672729 -741.6620647142 742.1121945309
11 -277.9369372752 -241.0094924435 240.9507594765
12 411.7245137531 -487.3980184836 487.8905926125
13 -253.9964415900 -197.9862647921 197.8988792812
14 380.5332456789 -445.0070125843 445.4402562207
15 -253.3712936940 -208.9003240093 208.8213675159
16 422.5004260356 -565.8066547311 566.2277488413
17 -273.3878651979 -247.7858713380 247.7067358803
18 467.1597302119 -671.5524911035 671.9466887734
19 -278.4234452639 -253.0334263410 252.9412977235
20 454.4906623024 -620.0697283865 620.4885872835
21 -271.9681646424 -236.3475174514 236.2435010555
22 430.3409792776 -558.5668765224 558.9779026060
23 -266.1092659182 -227.1802707867 227.0700206527
24 427.8322255254 -562.1421373738 562.5427747303
25 -267.9039712644 -233.4709206528 233.3664747819
26 440.9213655901 -598.5457042803 598.9425628071
27 -271.9623096609 -241.1099236180 241.0070175474
28 447.3659310697 -611.0769165546 611.4758154636
29 -272.3060107512 -240.3462164581 240.2402692486
1 7.2741678031 -12.9669422425 12.6960343962
2 6.8936434051 -13.9942160112 14.2375163422
3 -9.4423472536 -8.0914018706 8.2555960895
4 60.9390573893 -39.2948456595 40.0533156346
5 -110.8327346813 -81.8264384182 82.1824705095
6 282.8381217503 -407.4164354811 407.8765465565
7 -222.2710272212 -232.1755970742 231.8718845254
8 401.7978595328 -631.5745947134 631.3543939581
9 -176.5005471331 -172.7815549945 171.2053710736
10 242.8110200165 -238.7274890482 236.6857690610
11 -133.2262412574 -143.0280199376 133.8737254041
12 304.3700999332 -970.3446753419 904.6297849901
13 668.2098509423 -8929.9924659172 7696.1262615855
14 9400.6930338461 278534.9166613231 -518656.5341093629
15 4815780.8636717666 -97780183577.3173370361 97714772078.8301849365
16 1188720372503.0434570312 2485264661061671845888.0000000000 -2484860551419028570112.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.105323e-34.
17 36210907515695229042688.0000000000 6817887686327074795239675698954117249499136.0000000000 -6816808145146024570321304595174424515182592.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 6.017448e-55.
18 16515064974840302587524655098406750996398080.0000000000 -17531345576371738376879608258702857946728763373704116179042304.0000000000 17528569671226375755100896879623559510566470756382513150558208.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.115662e-73.
19 1170921572502894795978615947170234344689935165662762873191238453989944835606281453568.0000000000 18366218891615415539947343781462137353154881606425094293365282966669079701959917473363798866302660097600643678089046518661120.0000000000 -18363310793015656013586277271099011640314166563486899174142137728592575829911008434164846831209667146240007637469127103217664.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 4.761393e-136.
20 3608602579445307992376099845994800986767575435129386606388079619195026093702651330675285388974393936584726355643499195351755927074857372663686179919978090592299122688.0000000000 NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
21 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
22 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
23 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
24 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
25 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
26 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
27 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
28 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
29 NaN NaN NaN
1 7.0621536053 -13.8634891043 13.0825538257
2 5.9039440232 -12.6167166948 11.7855202704
3 -9.7288539297 -24.7963584436 17.6740992094
4 52.5310922101 -184.5410107013 93.7854170138
5 -195.3662268421 -1393.1180777706 -3021.1629801251
6 -40163.8071356916 -1039511889.8674274683 1036377058.6266988516
7 899342904.7635332346 794000661019606.3750000000 -793822221853599.6250000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 7.209960e-23.
8 2534701977038246.5000000000 2743861692773470943754321920.0000000000 -2743265476094651979098226688.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.180602e-41.
9 49081037965953958658560753664.0000000000 2124392725131476169030268296478153110743192302518272.0000000000 -2123931109325811596108653575184971932169225117892608.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.879738e-65.
10 647026295189213936535396504579809273281738806952772763648.0000000000 481812819131823439958732949934225978964084037378258471498407028699293777805596164096.0000000000 -481708124547789001564424658724136090259225655514035041240041670458694340559318810624.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.307173e-97.
11 130365511158546183275367247157450394883345622929940666544873072062734123181116794679631937031146620561745783029760.0000000000 28248097097886545467285058020421687403450854735273936983249193974661455920342009348273410533669109478154236378869652132270565848959617988505887577545136907847991296.0000000000 -28241958982298935600691757113113435081746190910192294633637443385184111525835551281728764794064432665480724761348910827094101318275237169643240311392768862841733120.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.437376e-177.
12 2706937140235287021110143560139043607256335453822651659475269518213816783560835242371813952576029565250408448699887671392580716395098066675154955382548330104341689999083030788046242756752313573764859134146719548105215692505088.0000000000 NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
13 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
14 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
15 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
16 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
17 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
18 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
19 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
20 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
21 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
22 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
23 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
24 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
25 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
26 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
27 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
28 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
29 NaN NaN NaN
1 6.8835468459 -14.6102736049 13.3490385564
2 4.3734223317 -14.9994080653 11.7595142539
3 -1.4020659216 -85.7481349406 50.3060652225
4 0.6415175035 -1263.6178867139 -35.2785914850
5 -5984.8543347273 -89025196302.8204803467 106065692222.5707092285
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.006184e-22.
6 46238097988.0420532227 -7643768586969071747072.0000000000 7641621615691221172224.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.806098e-34.
7 41860469309263421440.0000000000 -1365431109855161402307762352675446883090432.0000000000 1365047590032380721703342546126537364602880.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 7.832398e-55.
8 2956542002841629139282626279671282616238080.0000000000 14392963817072602333935945043299818489774903485210526262348480512.0000000000 -14388921147403977945948658116683270743385873300439877844570472448.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 7.477493e-78.
9 8158750657385465921666385943815460821195610676266831910940696774616833976266966171648.0000000000 -8099310167650869528012933901993123559767124780979064053106381529456864355496278998980404134957908542074184952517751713803796480.0000000000 8097035248046570465913868292179196628209667720436442122705183171993494568357635818120609166704294286023602366093406875802402816.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.013306e-139.
10 25614625286114570419302098683464963650333335281067590768388047252766799562315998198372968547591843247355530330840829843919179292583062295315333160192700125284377127026688.0000000000 NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
11 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
12 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
13 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
14 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
15 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
16 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
17 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
18 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
19 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
20 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
21 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
22 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
23 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
24 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
25 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
26 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
27 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
28 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
29 NaN NaN NaN
1 6.7302177344 -15.2902222045 13.5628698951
2 2.6096805348 -23.4052679152 15.3791253397
3 12.1315066070 -235.0643482737 116.9324643637
4 -208.4030181256 -5970.9762219858 -3456.4475122253
5 -64798.2433261307 -11986549974062.3613281250 11951291133166.4707031250
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.236390e-22.
6 5950713568655.1601562500 979026756324714741760.0000000000 -978685068239054569472.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.669285e-33.
7 71639539033678970617856.0000000000 207547046147882242242892080163743686721536.0000000000 -207474610867367706579139859523407678799872.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.296460e-54.
8 5947557004182703676342547357498552937873408.0000000000 -55333633311164296904774100109441345728168891330196525457342464.0000000000 55314321510176233310230122077672608062029261511919068117991424.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.569746e-74.
9 158119256591592689320580237518910784848551424399884480235735614315294970944486899712.0000000000 -4864035614752436135722601590184927916419137360415964317651091424235061141182818935226059056738849048732822257261135892840448.0000000000 4862338034417130844656690054603010447740501708389878666702366671379375760957789198411773645648829629702521174693413860147200.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.489451e-136.
10 2285354578002616695646359408751183360321176468924889513482823653943535838784160915766299180648814428291606380541903728199392737378155633345745670534650238393730990080.0000000000 NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
11 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
12 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
13 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
14 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
15 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
16 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
17 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
18 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
19 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
20 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
21 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
22 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
23 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
24 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
25 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
26 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
27 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
28 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
29 NaN NaN NaN
1 6.5963771735 -15.9410452080 13.7528253500
2 0.7343327148 -39.5347624701 23.2343096618
3 25.5760660545 -518.1427369919 171.7790459557
4 -1118.2483188931 -72128.1856495329 -16157.0995603983
5 -647339.5307107031 8803565731.2616748810 -8806045564.1209869385
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 6.636917e-18.
6 37005795464.0915985107 7578562426098818220032.0000000000 -7575369062811321761792.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.524968e-34.
7 3485188913854139072512.0000000000 6003857951099716293936908849312488751104.0000000000 -6001327170855495085708290636281494372352.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 5.375243e-53.
8 296911168644663159442002525188160619544576.0000000000 3286059793037088963187114232332681311956917080993417645902528512.0000000000 -3284674634481827270660692572018005855915601590914619556451319808.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.372563e-76.
9 31670169151263208553582332211272489685394732400639531637043723079650404470613868544.0000000000 13522076532552284996793407044523343822645528181881824472316228055397696428941064759521198188292032469224578841525377564672.0000000000 -13516376630184810031848155691591506640225585781691516936960820934148523264243368467047361029164030080289990882532035395584.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 2.397716e-134.
10 254799028280674714741571919124996634678775653405573522790234446760854438432760321337255715881993318090738653818103420530753718929872260635332889790628373292197609472.0000000000 NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
11 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
12 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
13 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
14 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
15 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
16 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
17 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
18 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
19 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
20 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
21 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
22 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
23 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
24 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
25 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
26 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
27 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
28 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
29 NaN NaN NaN
1 6.4778113958 -16.5793158222 13.9306726226
2 -1.2057496104 -64.7901147313 35.6281459292
3 33.1784369866 -965.9682131188 24.2154389914
4 -4284.8345630961 -5411910.3005335657 670503.2145478155
5 -56410181.8677946478 -180760432909933.1875000000 180665439402892.5312500000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 4.329015e-22.
6 217209306908850.7187500000 137255064041067759014707724288.0000000000 -137186674940502147106863054848.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.782202e-42.
7 86611402834779116567458217984.0000000000 1982499658852953027465308198542984152944650223616.0000000000 -1981511854133472282636721041593232454123884904448.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 5.865385e-62.
8 688288954297017900433717571610591342971764389238634708992.0000000000 69073008831575845993983845850954754122913579484639512082251953548851966278227613188096.0000000000 -69038592359518498040679514053615803205401096771452050603318376917207703929127287390208.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 4.210408e-99.
9 165332739562600391203948287042697394987324619706279668513854714550462598217179398612915323350156906908248661032960.0000000000 -41580078314200115266851803514047318178324443833159073149269272973907114191965255185829645187328169052742307286813924627248958924840471356591147392879613098065920.0000000000 41559360531267918062123403762374706368274790518968634893971201224030015818312344636154590306184799393623866500840817479527954586387581187638675700406752173359104.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.475019e-173.
10 6075840200951541688435096078844331154772560388053138611545720978013926738613403044209421725851906252069652252108612873331260911085803381819363444592006266588920374238945918582559246735904055853529036960643401569950664222572544.0000000000 NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
11 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
12 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
13 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
14 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
15 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
16 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
17 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
18 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
19 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
20 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
21 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
22 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
23 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
24 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
25 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
26 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
27 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
28 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
29 NaN NaN NaN
Warning: Ignoring extra legend entries.
Warning: Ignoring extra legend entries.
Warning: Ignoring extra legend entries.
Warning: Ignoring extra legend entries.
1 8.4338000795 -9.5794613035 11.6406726892
2 12.8540856639 -43.6649021521 45.3649996533
3 83.4084727360 -166.0387521256 167.4870045069
4 166.4396230373 -592.3399157434 593.2785513655
5 834.5822361751 -4601.2446369188 4599.3355008830
6 6554.3322512233 -137575.3319224095 137510.0463307809
7 196529.5446588944 -18443181.8835285939 18439122.9155939110
8 53568966.0901209116 -11368054910.2216377258 11360565447.0819416046
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 4.838210e-17.
9 2283682428772.5029296875 -183826013926738526208.0000000000 183822960122835894272.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 4.649592e-31.
10 3267884437475595124736.0000000000 -620695846898690390227953485600841007104.0000000000 620685764248586840030796916285136437248.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 7.466055e-51.
11 4454808887482996759308463339064453496832.0000000000 129712731439201134571715563493267040807240574661813436678144.0000000000 -129710624371639591637999466007449383300018483037013725413376.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.125774e-71.
12 4259341256773428229337928192018841463644913157125195007650039181774298284032.0000000000 493373561538288181729418494908611242178484450921445134824695674842204955037775007467078978802156124333573931008.0000000000 -493365547125085748954718379386823383085018334963842872100645452101358964303285500384108478298104161368803377152.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.563736e-123.
13 271720785388961394639388728084135361477316300757585814537152812687188858867306448702154291115134910129861042098008198714524472934858361062681477120.0000000000 -16956779414940478466245323607560419515100765246279980966759033009846932936420459764741617292523740450561497972811707669912851352776902460678503141646550371187417047897171214273241175522149129725698637824.0000000000 16956503967191763797941865386331462202913165319845472228152474296264285352684399872124933405753429727665938015632740728087926804195398827877955359552826211368836330704101345461458635326520647306778247168.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.568309e-214.
14 22950199476182111949195733254553000552461924085873555750017185603679007680172007698130644993396170746261993111203469467952280979168579536173686002005200500670929048405373662096081322787184721537136532635904935540265661360125284724879876835648129063673616481018697133006536465030383493185536.0000000000 NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
15 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
16 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
17 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
18 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
19 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
20 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
21 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
22 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
23 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
24 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
25 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
26 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
27 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
28 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
29 NaN NaN NaN
1 7.8611209690 -12.5539988595 13.3409640298
2 14.5890190677 -35.5728238003 36.3894487288
3 26.1693725793 -33.6869453454 34.4771961706
4 -20.0724075633 -25.5220868214 25.9895542682
5 110.8206227681 -116.2730101479 117.0845677249
6 -88.2850368233 -55.2783390215 55.8150617806
7 156.1468527175 -86.3946624028 87.0375955789
8 -75.9663433370 -85.3761155087 86.0641876475
9 77.2970267774 -35.6752960051 36.2946800226
10 45.4753847499 -61.1862379280 61.8577560557
11 -74.8862969357 -65.4794074602 66.0791629556
12 172.9083359345 -102.6922022941 103.4540468796
13 -127.3334056267 -71.2677885222 71.7744097733
14 147.1701519917 -79.6990156654 80.4749551614
15 -38.3812680542 -40.9618541967 41.5905473426
16 3.4371622269 -34.2331754966 34.7715595452
17 121.4741343419 -110.7875504853 111.6178081881
18 -125.3515013712 -71.0438089134 71.4593654464
19 216.1643927058 -151.5534493260 152.3156593945
20 -135.1063107076 -90.9289963998 91.5375815975
21 141.6646913479 -59.7234212501 60.3556088922
22 5.7797510840 -75.7735030643 76.5130497704
23 -60.2973638138 -51.9249955017 52.4403212081
24 208.5147336819 -163.5118705800 164.3142529337
25 -191.9777622141 -127.6238184636 128.0955360365
26 261.8121124683 -171.0628673783 171.8805787884
27 -125.8537132719 -71.3208249309 71.9155665609
28 72.1985710384 -38.2924536561 38.8969933719
29 110.7256424083 -122.0732575305 122.9129757988
1 7.5315696529 -14.7599129280 14.7225806948
2 16.5288008629 -34.4270572136 34.7971487788
3 6.2289063842 -11.6475089520 12.2982272132
4 0.8940756863 -12.6476673285 13.1378499178
5 30.1025757201 -18.8151980269 19.4105192614
6 -46.4116492987 -23.6461652934 24.0206545563
7 110.5774150908 -67.2161046257 67.9283863249
8 -128.7035582541 -77.7526034305 77.8711431372
9 217.6845348886 -197.6622728329 198.3153519783
10 -189.6119540587 -143.6667099594 143.5598782402
11 308.3261114638 -394.9791791055 395.1743435499
12 -210.5872296736 -180.4376490338 180.2913488326
13 347.4322720525 -493.0244421542 493.2848728586
14 -220.0941509756 -200.7192655144 200.5152025522
15 373.1205742622 -582.8090843321 582.8769171907
16 -210.8781593775 -192.3879009282 192.1546284395
17 354.4954400633 -527.1899397553 527.4470267632
18 -209.2708657315 -185.9435930638 185.8400834724
19 349.9347890523 -513.2998321206 513.5356770421
20 -216.5225092519 -199.3209266221 199.1234292825
21 376.9397018234 -603.7246240056 603.8867978314
22 -217.3170812841 -205.2749421860 205.0957037885
23 377.1179823388 -594.0727248439 594.2927752597
24 -221.4063882073 -209.7450311195 209.5648175105
25 382.1998145482 -610.2594640502 610.4199647308
26 -219.0401190063 -207.0307001593 206.8207248025
27 377.7448999238 -598.8375357419 599.0224378392
28 -216.2844478895 -201.8268246154 201.6568073447
29 370.2102205624 -573.8886360442 574.0961021275
1 7.2742439000 -16.1825291737 15.4720738841
2 15.8861487899 -30.8792370564 30.0532319584
3 -7.8859509425 -15.7147979653 12.5441056776
4 40.4433187521 -57.7109347461 38.1651975612
5 -84.6000037660 -330.2553086011 96.7069927249
6 -713.8018921474 -38023.1707460566 35088.5143272995
7 90699.5229388974 -95459905.3780585527 98731023.5720565170
8 3807603.7196803684 -3887732012500201.5000000000 3887097644594808.5000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 2.293501e-24.
9 -36576167091295.1328125000 -4233817684883344266092196397056.0000000000 4233147304327714429675585404928.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 7.178662e-43.
10 -472189861968816904659565281280.0000000000 -22142763322962843530935755814816965227056755376128.0000000000 22139257248065613353130133139529871591579754430464.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 2.627849e-63.
11 276353287796232321437758567995174172444625307608906125541376.0000000000 4606174018698337618346737861116809103146181017980903379129012730320459320050144038629670912.0000000000 -4605444679235879316106284583811960445843195450776854600611176160156067857963850044553560064.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 6.883879e-103.
12 9190678790131119082454304434834507950594810626043302646610728762227853273319119102869153435315992366631577837564329984.0000000000 168849364192557032967203143433309774189351091438450883838248778866637326865389133930575676544468037981444387487553414005886367419690511820972395570865924912009183232.0000000000 -168822628662371389848475399685520863782112788211661671963326307243816752513381883696892073689117803758186686558103402146758102108314094391068776359645085777637933056.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 2.152841e-176.
13 4529476945299332090085985827198204330767296066267040139595339470312051584697433158563421375099550313567512690048304577114138478041062902439315349639441181766510746206424516933165004907264511132920255145639404607916426337840530850840576.0000000000 NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
14 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
15 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
16 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
17 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
18 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
19 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
20 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
21 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
22 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
23 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
24 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
25 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
26 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
27 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
28 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
29 NaN NaN NaN
1 7.0621662510 -17.1758476147 15.8854984196
2 14.0366264156 -29.0271057624 25.8258612728
3 -12.0733587000 -80.8774668302 45.7409487712
4 28.0723402228 -990.2342003717 -332.8115786069
5 -8145.7413146367 1126470133.6117186546 -1351012839.8597016335
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 2.015749e-19.
6 -346424757.9863797426 3896047682757443584.0000000000 -3895201241073987072.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.622286e-29.
7 1745105464157604096.0000000000 -1076048729852799419081387099281162240.0000000000 1075814911926630940274747357270114304.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 9.358279e-50.
8 -372646877594945427400067481174278144.0000000000 60952191328523324410053457777830595934446226333560209408.0000000000 -60938946840075268472906905465970685197666005279043485696.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 8.048377e-70.
9 333564846273436128041383724523319545691842207016091185660546693201920.0000000000 -1500899340936729580617017575311256881790377384709659965096387300642646815883860380050643620187874349023232.0000000000 1500573205919277758492174360584036272662285528923975196067772330302687122780220817057596590295402600726528.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.599884e-119.
10 505716223378686869463921600267061639759087626516922299051125149408130057220350964711464544789714051445021133374764773443456655385958547456.0000000000 13957482937413647885021116502233684868367870613808337056345137313779438895545993323008905934887504831930488333832443103356267781748732286234775596041521577569930234437925580863536401115833696256.0000000000 -13954450073172032827521777632780022926210386582660116373584246069520826573663638999341258968853967278267562245628993106657540555748293493128061363065648889592743082734719500318297521010537136128.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 2.457624e-207.
11 342973312529893446081507987257718238835509356831751059229472803473275278875398981907723485532624257529669312307010578415056229081613052161734098646170993325990809663416726767165764240173333984949112703141291316384079710488113240763744511888314791182949825350154997553654923264.0000000000 NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
12 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
13 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
14 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
15 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
16 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
17 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
18 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
19 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
20 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
21 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
22 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
23 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
24 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
25 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
26 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
27 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
28 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
29 NaN NaN NaN
1 6.8835657006 -17.9645917979 16.1465405088
2 11.7423114929 -32.5052305604 25.1194115571
3 -4.3529201502 -244.5647671190 118.7810794449
4 -153.0393264952 -4852.3764296235 -7870.3664470638
5 -108740.3157732558 362251660138.2149658203 -361787710908.7935791016
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 2.007124e-18.
6 -56264371476.4559783936 388968231613901888.0000000000 -388858914547581120.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.599503e-26.
7 6684534179919812608.0000000000 448714658075314761406230236179202048.0000000000 -448588623913158508268382136762892288.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.571643e-50.
8 665322405818469935633579354007535616.0000000000 1260056338305308662755134910655035581582271069272057839616.0000000000 -1259702415957947514081835072574531229761967271088501030912.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 4.475957e-70.
9 43434727144369528716946787632745747074977251978698244743240897976598528.0000000000 71015839331958516551282007901306162171637477238081077809600120252525857794667065387001718475125640134656.0000000000 -70995892531333720837027932076417706337676517784794418440697393293899286503255718081705687637184139493376.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.068691e-116.
10 247672048806375483167541982612467588068638581785511889160988628707994314171601680680948119324233742918733404144949013964396975209405321576448.0000000000 -13943254118742363494131417024918177318473603971543584363791847393628968313622751527521866944217593033577025117087181403639559827390244204978194456980882104532483841999233762427456709816159838404608.0000000000 13939337762721178088795957181559388086350656588881459236034998784430145726432031779574557427880535753224095277501479212627226136496668059862585209138099624931036667265237006112104678405493862957056.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 5.819927e-209.
11 4448750872258176819637257354931398281770219724842181051124406191273101472846916161902905754555251002001237271683458318003002636933210494698042872498340385006079046802420885769218677741627028387986546538322301926173036214035179124482715354146801277767402400061502308848315481980928.0000000000 NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
12 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
13 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
14 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
15 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
16 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
17 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
18 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
19 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
20 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
21 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
22 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
23 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
24 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
25 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
26 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
27 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
28 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
29 NaN NaN NaN
1 6.7302443490 -18.6612988158 16.3422050181
2 9.3163755168 -43.7442149802 29.3305309896
3 11.0842464042 -536.4856710181 203.8519454190
4 -874.0546513545 -53401.8964238316 -57798.4792856808
5 -986036.3241166199 619942847773.2824707031 -619773713268.5426025391
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.994877e-19.
6 265838576932.4302673340 5321674766501671862272.0000000000 -5319818198407329087488.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.061857e-34.
7 4138206446182299860992.0000000000 -675454685651734460276521850093028889329664.0000000000 675218947535779684612782086470286962589696.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 2.746584e-55.
8 2085947780663300436442772615657993977987072.0000000000 -9620949327203825240210943869136537194663837541343061175695310848.0000000000 9617591552779782624870747603453227366570964808914338581451898880.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 6.132571e-77.
9 2243290018466902646246100880067626384261813571193289888950796259600992425181974626304.0000000000 -24687068500622439552941184324994986537361631006641301561132059692857416915604097312794536284826599644424384874286660198596608.0000000000 24678452551780280023833406688918863704211610036471369742830894738078246987971077001969639006212200888527651697217139334184960.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 6.186584e-137.
10 1207085628066635824904826194372951093727245396166844794173298213684475365766004667819755447144751099241291347191571597818936101190751279518596973928745152992757919252480.0000000000 NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
11 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
12 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
13 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
14 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
15 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
16 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
17 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
18 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
19 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
20 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
21 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
22 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
23 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
24 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
25 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
26 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
27 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
28 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
29 NaN NaN NaN
1 6.5964023872 -19.3178054092 16.5097042187
2 6.8648788590 -64.4357021958 38.9969548413
3 27.8161191193 -947.3053796886 143.5558292568
4 -3330.9685909834 179146.6440338037 -3229392.9694401245
5 -30006170.1800564937 229052611366493.3750000000 -228954664173166.4687500000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 5.738767e-23.
6 185463912601579.8437500000 -3104642740749759417275121664.0000000000 3103334052034082691702849536.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 1.645170e-40.
7 2680737810828210144309936128.0000000000 506011498940764018543936801769987805796274012160.0000000000 -505798202104746324295058895997937342926725054464.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 4.939547e-61.
8 7407721609270786080925498829589515935348806867908296704.0000000000 -25432139006423444208427800433305964646879052893471780024174412283257443816447148032.0000000000 25421418706994311471518322796551210315010252857807478491224492236925967884219318272.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 9.363587e-96.
9 21281111682287407704262645420789580513537811135643742107386487984254006192047743540730388086207338155180294144.0000000000 -2873898744698823393781162114734283581452976835266521291581329426525977139318346347065926023936083642547754874024260853786289812849997844364589791049167142912.0000000000 2872687322605527385909842678947987962206373892408677265921769673646763994187602270298322331639881034780707942917833374219644240929696557498900004656071573504.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 5.531934e-171.
10 97882827320529386587746723144490991217151091482681027257144301508698336766905030493091880378254859334350306308421208381775300731590793855184416002394754313438699518023205747358777113888723054071688039244342578630361088.0000000000 NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
11 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
12 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
13 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
14 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
15 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
16 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
17 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
18 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
19 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
20 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
21 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
22 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
23 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
24 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
25 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
26 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
27 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
28 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
29 NaN NaN NaN
1 6.4778409302 -19.9570380878 16.6642068311
2 4.4176821204 -95.9557304035 54.3424109201
3 39.2166543366 -1403.7914871902 -468.1749554051
4 -10324.6493884690 -13801375572.5778923035 6560470527.5707521439
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 5.732105e-19.
5 18551677237.3601112366 -47836841205588860928.0000000000 47813006497730560000.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 7.776326e-32.
6 345853840255154520064.0000000000 -196958808473013378733212259700743144996864.0000000000 196860671336048858767739502042827563466752.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 2.584412e-54.
7 9478204496107391363232287070407515701248.0000000000 5243182704182891155805444154254496129589413214791222610100224.0000000000 -5240570224227502849668655428945623480797577001086218292690944.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 9.878511e-74.
8 3900314005160849105618849109089065899525527360179895292582067092770415695139700736.0000000000 -138307128205411417868477078272944635301267934778253535283874739075830774170374478404658931938703237135038564563972532469760.0000000000 138238214985996888894749028245495098342752359378452933324172073587122387579998577973122971060745022587678832767758441119744.0000000000
Warning: Matrix is close to singular or badly scaled. Results may be inaccurate. RCOND = 3.928848e-135.
9 6164995959445689810752253793082395619782944274767332949105890939481308399164883150454066834826422777686565559219139522021261270945972466332633767687482538318626816.0000000000 NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
10 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
11 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
12 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
13 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
14 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
15 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
16 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
17 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
18 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
19 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
20 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
21 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
22 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
23 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
24 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
25 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
26 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
27 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
28 NaN NaN NaN
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN.
29 NaN NaN NaN




toc
Elapsed time is 5.122398 seconds.
function [D, x] = cheb(N)
if N == 0
D = 0;
x = 1;
return
end
x = cos(pi * (0:N) / N)';
c = [2; ones(N - 1, 1); 2] .* (-1).^(0:N)';
X = repmat(x, 1, N + 1);
dX = X - X';
D = (c * (1 ./ c)')./(dX + (eye(N + 1)));
D = D - diag(sum(D, 2));
end
so that it may plot and converge?
P
on 22 Apr 2026
Edited: Walter Roberson
on 25 Apr 2026
If we are confirming the graphs they must look like the ones on the bvp4c:
sisko9()








function sisko9
% Parameter initialization
% A = 1; %Material parameter
M = 1; %Magnetic field
n = 1; % Power law index
m = 1; %Velocity power
gamma = 1; %Chemical reaction parameter
Nt = 0.1; %Thermophoresis number
Nb = 0.1; %Brownian motion
GrT = 1; %Thermal Grashof number
GrC = 2; %Concentration Grashof number
Rd = 1; %Radiation parameter
Sc = 1; %Schmidt number
Pr = 3; %Prandtl number
Ec = 1; %Eckert number
%Sk=linspace(0,0.5,6); % Domain for the Skin friction coeeficient,Nusselt number and sherwood number
% Constant calculation
Costant = (m*(2*n - 1) + 1) / (n + 1);
% System of ODE
function dydx = odefun(~, y)
%f = y(1), f' = y(2), f'' = y(3), theta = y(4), theta' = y(5),
%phi=y(6), phi'=y(7)
%= y(6), phi' = y(7), phi''=y(8)
dydx = zeros(7, 1);
dydx(1) = y(2);
dydx(2) = y(3);
dydx(3) = (-Costant*y(1)*y(3) + m*y(2)^2 - GrT*y(4) - GrC*y(6) + M*y(2))./(A(i) + n*(-y(3))^(n-1));
dydx(4) = y(5);
dydx(5) = (-Costant*y(1)*y(5) - Nb*y(5)*y(7) - Nt*y(5)^2 - Ec.*A(i).*y(3).^2 - Ec*(-y(3))^(n+1) - M*Ec*y(2)^2)./((1+4/3*Rd)/Pr);
dydx(6) = y(7);
dydx(7) = -Sc*Costant*y(1)*y(7) - (Nt/Nb)*dydx(5) + gamma*y(6);
end
% Nested function: Boundary conditions
function res = bcfun(ya, yb)
res = zeros(7, 1);
res(1) = ya(2)-1; % y(2) = 1 at eta = 0
res(2) = ya(1); % y(1) = 0 at eta = 0
res(3) = ya(4)-1; % y(4) = 1 at eta = 0
res(4) = Nb*ya(7) + Nt*ya(5); % Boundary condition at eta = 0
res(5) = yb(2); % y(2) = 0 at eta = 10
res(6) = yb(4); % y(4) = 0 at eta = 10
res(7) = yb(6); % y(6) = 0 at eta = 10
end
% Classical variables
%
%==============================================================================
solinit=bvpinit(linspace(0,10,10),[0 0 0 0 0 0 0]);
A=[1 2 3 4 ];
C={'r','g','k','b'}; % Original models colors for parameter variation
%Cl={'r','g','b','k'}; % Skin friction, Nusselt number and Sherwood number colors
for i=1:4
% options=bvpset('RelTol',1e-10,'AbsTol',1e-10);
sol=bvp4c(@odefun,@bcfun,solinit);
eta=linspace(0,10,400);
y=deval(sol,eta);
Cf_x=A(i)*y(3,1)-(-y(3,1)); % Skin friction coefficient
% Nu_x=-(1+(4/3)*Rd)*y(5,1); %Nusselt number
% Sh_x=-y(7,1); %Sherwood number
%=====================================================================================
figure(1);
plot(eta,y(1,:),C{i},Linestyle='-',LineWidth=2);
xlabel("\eta");
ylabel("f(\eta)");
% legend('A=1','A=2','A=3','A=4')
hold on
%=====================================================================================
figure(2);
plot(eta,y(2,:),C{i},LineStyle="-",LineWidth=2);
xlabel("\eta");
ylabel("f'(\eta)");
%legend('A=1','A=2','A=3','A=4');
hold on
%=====================================================================================
figure(3);
plot(eta,y(3,:),C{i},LineStyle="-",LineWidth=2);
xlabel("\eta");
ylabel("f''(\eta)");
%legend('A=1','A=2','A=3','A=4');
hold on
%====================================================================================
figure(4);
plot(eta,y(4,:),C{i},LineStyle="-",LineWidth=2);
xlabel("\eta");
ylabel("\theta(\eta)");
%legend('A=1','A=2','A=3','A=4');
hold on
%====================================================================================
figure(5);
plot(eta,y(5,:),C{i},LineStyle="-",LineWidth=2);
xlabel("\eta");
ylabel("\theta'(\eta)");
%legend('A=1','A=2','A=3','A=4');
hold on
%=====================================================================
figure(6);
plot(eta,y(6,:),C{i},LineStyle="-",LineWidth=2);
xlabel("\eta");
ylabel("\phi(\eta)");
%legend('A=1','A=2','A=3','A=4');
hold on
%=========================================================================
figure(7);
plot(eta,y(7,:),C{i},LineStyle="-",LineWidth=2);
xlabel("\eta");
ylabel("\phi''(\eta)");
%legend('A=1','A=2','A=3','A=4');
hold on
figure(8);
plot(A(i),Cf_x,strcat(C{i},'*'));
xlabel("A");
ylabel('$(1/2)Re_{b}^{-1/(n+1)}Cf_{x}$','Interpreter','latex')
hold on
% %============================================================
% figure(9);
% plot(eta,Nu_x,C{i},LineStyle='-',LineWidth=2);
% xlabel("\eta");
% ylabel('$Re_{b}^{-1/(n+1)}Nu_{x}$');
%
% hold on
% figure(10);
% plot(eta,Sh_x,C{i},LineStyle="-",LineWidth=2);
% xlabel("\eta");
% ylabel('$Re_{b}^{-1/(n+1)}Sh_{x}$');
%hold on
end
figure(1);
legend([repmat('A= ',length(A),1) num2str(A')]);
figure(2);
legend([repmat('A= ',length(A),1) num2str(A')]);
figure(3);
legend([repmat('A= ',length(A),1) num2str(A')]);
figure(4);
legend([repmat('A= ',length(A),1) num2str(A')]);
figure(5);
legend([repmat('A= ',length(A),1) num2str(A')]);
figure(6);
legend([repmat('A= ',length(A),1) num2str(A')]);
figure(7);
legend([repmat('A= ',length(A),1) num2str(A')]);
figure(8);
legend([repmat('A= ',length(A),1) num2str(A')]);
% legend('A=1','A=2','A=3','A=4');
% figure(9);
% legend('A=1','A=2','A=3','A=4');
% axis([0 1 0 1]);
% figure(10);
% legend('A=1','A=2','A=3','A=4');
% for i=
% %fprintf('%.10f\n',Cf_x);
% end
%end
end
As a first step I'd suggest that you try to code your method for a simpler ODE (preferably one for which you know the solution).
More Answers (2)
I modified A1, B1, A2, B1 and A3 to get compatible dimensions for matrix multiplications without knowing whether these modifications are correct from the mathematical point of view.
The code now works technically, but doesn't converge.
Since you don't explain the mathematical method you try to implement (and I've not yet heard of it), I cannot help further.
function [D, x] = cheb(N)
if N == 0
D = 0;
x = 1;
return
end
x = cos(pi * (0:N) / N)';
c = [2; ones(N - 1, 1); 2] .* (-1).^(0:N)';
X = repmat(x, 1, N + 1);
dX = X - X';
D = (c * (1 ./ c)')./(dX + (eye(N + 1)));
D = D - diag(sum(D, 2));
end
clear; %clc;
N = 120;
[D,x] = cheb(N);
% Parameter initialization
% A = 1; %Material parameter
M = 1; %Magnetic field
n = 1; % Power law index
m = 1; %Velocity power
gamma = 1; %Chemical reaction parameter
Nt = 0.1; %Thermophoresis number
Nb = 0.1; %Brownian motion
GrT = 1; %Thermal Grashof number
GrC = 2; %Concentration Grashof number
Rd = 1; %Radiation parameter
Sc = 1; %Schmidt number
Pr = 3; %Prandtl number
Ec = 1; %Eckert number
%Sk=linspace(0,0.5,6); % Domain for the Skin friction coeeficient,Nusselt number and sherwood number
% Constant calculation
Costant = (m*(2*n - 1) + 1) / (n + 1);
iterations = 30;
tol = 1e-8;
tic
p = 1; %counter
Vec =[ 1 2 3 4];
for mm = 1: length(Vec)
A= Vec(mm);
Lmin = 1; MaxL = 10;
L = Lmin;
while L < MaxL
scale = 2/L;
D1 = scale*D; D2 = (scale^2*D^2) ; D3 = (scale^3*D^3);
y = L*(x+1)/2; I = eye(N+1);
gr = exp(-y);hr = exp(-y); thetar = exp(-y); phir = exp(-y);
fr = 1- exp(-y);
it = 1;
thetanorm = 1; phinorm = 1;hnorm = 1; gnorm = 1;
NORMS = [gnorm hnorm phinorm thetanorm];
while max(NORMS) > tol && it < iterations
%=================================================================================
%Momentum equation
% A1 = (A+n*(-D1*diag(gr)).^(n-1))*D2+Costant*fr*D1-M.*I; %Left hand side A1*g_{r+1}=B1
A1 = (A+n*(-D1*diag(gr)).^(n-1))*D2+Costant*D1*fr-M.*I; %Left hand side A1*g_{r+1}=B1
A1(N+1,:) = 0; A1(N+1,N+1) = 1;
A1(1,:) = 0; A1(1,1) = 1;
% B1 =m*gr^2 -GrT*thetar - GrC*phir; %Right hand side
B1 =m*gr.^2 -GrT*thetar - GrC*phir; %Right hand side
B1(1) = 0; B1(N+1) = 1;
grt = A1\B1;
gnorm = norm(grt-gr,inf);
gr = grt;
gr1 = D1*gr;
%================================================================================
%Energy equation
% A2 =(1/Pr)*(1+(4/3)*Rd)*D2+Costant*fr*D1+Nb*(D1*phir)*D1;
A2 =(1/Pr)*(1+(4/3)*Rd)*D2+Costant*D1*fr+Nb*D1*(D1*phir);
A2(N+1,:) = 0; A2(N+1,N+1) = 1;
A2(1,:) = 0; A2(1,1) = 1;
% B1 = -M*Ec*(gr)^2-Nt*(D1*thetar)^2-Ec*A*(D1*gr)^(2)-Ec*(-D1*gr)^(n+1);
B1 = -M*Ec*(gr).^2-Nt*(D1*thetar).^2-Ec*A*(D1*gr).^(2)-Ec*(-D1*gr).^(n+1);
B1(1) = 0; B1(N+1) = 1;
thetart = A2\B1;
hnorm = norm(thetart-thetar,inf);
thetar = thetart;
thetar1 = D1*thetar;
%=======================================================================================
%Concentration equation
% A3 = D2+Sc*Costant*fr*D-gamma*I ;
A3 = D2+Sc*Costant*D*fr-gamma*I;
A3(N+1,:) = 0; A3(N+1,N+1) = 1;
A3(1,:) = 0; A3(1,1) = 1;
B3 = -(Nt/Nb)*(D2*thetar);
B3(1) = 0;
B3(N+1) = 1;
phirt = A3\B3;
thetanorm = norm(phirt-phir,inf);
phir = phirt;
phir1 = D1*phir;
%--------------------------------------------------------------------------
% A4 = D2 + Le*diag(fr)*D1;
% A4(N+1,:) = 0; A4(N+1,N+1) = 1;
% A4(1,:) = 0; A4(1,1) = 1;
% B4 = -(Nt/Nb)*(D2*thetar);
% B4(1) = 0;
% B4(N+1) = 1;
% phirt = inv(A4)*B4;
% phinorm = norm(phirt-phir,inf);
% phir = phirt;
% phir1 = D1*phir;
%--------------------------------------------------------------------------
fprintf('%10.0f\t %10.10f\t %10.10f\t %10.10f\n', it,-gr1(N+1),-thetar1(N+1),-phir1(N+1));
it = it + 1;
NORMS = [gnorm hnorm phinorm thetanorm];
Edecoupled(it-1) = max(NORMS);
end
thetarr(:,p+1) = thetar1(N+1); %f'(eta) after convergence
phirr(:,p+1) = phir1(N+1);
grr(:,p+1) = gr1(N+1);
dtheta = abs(thetarr(:,p+1) - thetarr(:,p));
dphi = abs(phirr(:,p+1)-phirr(:,p));
dg = abs(grr(:,p+1)-grr(:,p));
dL = [dtheta dphi dg];
if all(dL) < tol
% if dtheta <tol
break
end
L = L + 1;
p = p + 1; %Counter
end
switch mm
case 1
figure(1)
plot(1:length(Edecoupled),log(Edecoupled),'ko-','markersize',5,'MarkerFaceColor','k')
clear Edecoupled;
hold on
figure(2)
plot(y,gr,'k','linewidth',1.5);
hold on
figure(3)
plot(y,thetar,'k','linewidth',1.5);
hold on
figure(4)
plot(y,phir,'k','linewidth',1.5);
hold on
case 2
figure(1)
plot(1:length(Edecoupled),log(Edecoupled),'k*-','markersize',5,'MarkerFaceColor','k')
clear Edecoupled;
figure(2)
plot(y,gr,'r:','linewidth',1.5);
hold on
figure(3)
plot(y,thetar,'r:','linewidth',1.5);
hold on
figure(4)
plot(y,phir,'r:','linewidth',1.5);
hold on
case 3
figure(1)
plot(1:length(Edecoupled),log(Edecoupled),'k^-','markersize',5,'MarkerFaceColor','k')
clear Edecoupled;
figure(2)
plot(y,gr,'g--','linewidth',1.5);
hold on
figure(3)
plot(y,thetar,'g--','linewidth',1.5);
hold on
figure(4)
plot(y,phir,'g--','linewidth',1.5);
hold on
case 4
figure(1)
plot(1:length(Edecoupled),log(Edecoupled),'kd-','markersize',5,'MarkerFaceColor','k')
clear Edecoupled;
figure(2)
plot(y,gr,'b--','linewidth',1.5);
hold on
figure(3)
plot(y,thetar,'b--','linewidth',1.5);
hold on
figure(4)
plot(y,phir,'b--','linewidth',1.5);
hold on
case 5
figure(1)
plot(1:length(Edecoupled),log(Edecoupled),'kp-','markersize',5,'MarkerFaceColor','k')
clear Edecoupled;
figure(2)
plot(y,gr,'b---','linewidth',1.5);
hold on
figure(3)
plot(y,thetar,'b---','linewidth',1.5);
hold on
figure(4)
plot(y,phir,'b---','linewidth',1.5);
draw
hold on
% case 5
% figure(1)
%plot(1:length(Edecoupled),log(Edecoupled),'kp-','markersize',5,'MarkerFaceColor','k')
% clear Edecoupled;
end
figure(1)
xlabel('Iterations','FontSize',12)
ylabel('$\ln(E_d)$','Interpreter','Latex','FontSize',14)
legend([repmat('M=',length(MM),1) num2str(MM')])
figure(2)
legend([repmat('M= ',length(MM),1) num2str(MM')])
xlabel('$\eta$','Interpreter','Latex','FontSize',14)
ylabel('$f''(\eta)$','Interpreter','Latex','Rotation',90,'FontSize',14)
axis([0 10 0 1])
figure(3)
legend([repmat('M= ',length(MM),1) num2str(MM')])
xlabel('$\eta$','Interpreter','Latex','FontSize',14)
ylabel('$\theta(\eta)$','Interpreter','Latex','Rotation',90,'FontSize',14)
axis([0 10 0 1])
figure(4)
legend([repmat('M= ',length(MM),1) num2str(MM')])
xlabel('$\eta$','Interpreter','Latex','FontSize',14)
ylabel('$\phi(\eta)$','Interpreter','Latex','Rotation',90,'FontSize',14)
axis([0 10 0 1])
%fprintf('%2.0f\t %2.0f\t %2.0f\t %2.0f\t %2.0f\t %2.0f\t %2.0f\t %10.8f\t %10.8f\n',G_r,K_r,it,L,N,pr1(N+1),thetar1(N+1));
end
toc
Here is a code for the Blasius equation to give you an idea:
N = 100;
L = 10;
%
% Solve Blasius equation f''' + 0.5*f*f'' = 0, f(0) = f'(0) = 0, f'(1) = 1
% using spectral relaxation method
% u1 = f, u2 = f', u3 = f''
%
maxiter = 40;
tol = 1e-10;
[D,x] = cheb(N);
eta = L/2*(1-x);
u1_old = eta - (1-exp(-eta));
u2_old = 1 - exp(-eta);
u3_old = exp(-eta);
u_old = [u1_old;u2_old;u3_old];
error = 1;
iter = 0;
while error > tol & iter <= maxiter
iter = iter + 1;
A = [-2/L*D,-eye(N+1),zeros(N+1);... % u1' - u2 = 0
zeros(N+1),-2/L*D,-eye(N+1);... % u2' - u3 = 0
zeros(N+1),zeros(N+1),-2/L*D+0.5*diag(u1_old);... % u3' + 0.5*u1*u3 = 0
[1,zeros(1,N)],zeros(1,N+1),zeros(1,N+1);... % u1(0) = 0
zeros(1,N+1),[1,zeros(1,N)],zeros(1,N+1);... % u2(0) = 0
zeros(1,N+1),[zeros(1,N),1],zeros(1,N+1)]; % u2(L) = 1
b = [zeros((N+1),1);zeros(N+1,1);zeros(N+1,1);0;0;1]; % Right-hand sides: 0,0,0,0,0,1
u = A\b;
error = norm(u-u_old,Inf);
u1_old = u(1:N+1);
u2_old = u((N+1)+1:2*(N+1));
u3_old = u(2*(N+1)+1:3*(N+1));
u_old = [u1_old;u2_old;u3_old];
end
iter
iter = 20
error
error = 5.0644e-11
u1_SRM = u(1:N+1);
u2_SRM = u((N+1)+1:2*(N+1));
u3_SRM = u(2*(N+1)+1:3*(N+1));
%
% Solve Blasius equation f''' + 0.5*f*f'' = 0, f(0) = f'(0) = 0, f'(1) = 1
% using bvp4c
%
xmesh = linspace(0,L,N+1);
solinit = bvpinit(xmesh, [0;0;0]);
odefun = @(x,y)[y(2);y(3);-0.5*y(1)*y(3)];
bcfun = @(ya,yb)[ya(1);ya(2);yb(2)-1];
sol = bvp4c(odefun,bcfun,solinit);
u = deval(sol,eta).';
u1_bvp4c = u(:,1);
u2_bvp4c = u(:,2);
u3_bvp4c = u(:,3);
% Compare results
norm(u1_bvp4c-u1_SRM,Inf)
ans = 1.9582e-06
norm(u2_bvp4c-u2_SRM,Inf)
ans = 4.7291e-07
norm(u3_bvp4c-u3_SRM,Inf)
ans = 2.4925e-07
figure(1)
plot(eta,[u1_SRM,u1_bvp4c])

figure(2)
plot(eta,[u2_SRM,u2_bvp4c])

figure(3)
plot(eta,[u3_SRM,u3_bvp4c])

function [D, x] = cheb(N)
if N == 0
D = 0;
x = 1;
return
end
x = cos(pi * (0:N) / N)';
c = [2; ones(N - 1, 1); 2] .* (-1).^(0:N)';
X = repmat(x, 1, N + 1);
dX = X - X';
D = (c * (1 ./ c)')./(dX + (eye(N + 1)));
D = D - diag(sum(D, 2));
end
Categories
Find more on Chemistry in Help Center and File Exchange
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)