You are on page 1of 20

A=[-3 6 -4; 9 -8 24; -12 24 -26]

A =

-3 6 -4
9 -8 24
-12 24 -26

B=[-3;65;42]

B =

-3
65
42

[L,U,E]= lu(A)

L =

1.0000 0 0
-0.7500 1.0000 0
0.2500 0 1.0000

U =

-12.0000 24.0000 -26.0000


0 10.0000 4.5000
0 0 2.5000

E =

0 0 1
0 1 0
1 0 0

Z=L\B

Z =

-3.0000
62.7500
42.7500

XX=A\B

XX =

32.3600
12.0800
-5.4000

X=U\Z

X =

-39.6400
-1.4200
17.1000

A = [1 1 1 ; 2 4 4 ; 1 2 3]

A =

1 1 1
2 4 4
1 2 3

b = [1 3 3]

b =

1 3 3

B=b'

B =

1
3
3

X0=[0;0;0]

X0 =

0
0
0

jacobi (A,B,X0,0.000001,50)

ans =

1.0e+007 *

-1.2044
-0.9540
-0.7384

uiopen('C:\Users\Excalibur\Documents\MATLAB\gaussjordan.m',1)
uiopen('C:\Users\Excalibur\Documents\MATLAB\gaussseidel.m',1)
gaussseidel
{#??? Error using ==> mtimes
Inner matrix dimensions must agree.

Error in ==> <a href="matlab:


opentoline('C:\Users\Excalibur\Documents\MATLAB\gaussseidel.m',11,0)">gaussseidel
at 11</a>
x1=-inv(D+L)*U*x0+inv(D+L)*B;
}#
A = [1 2 5 3 ; 2 1 3 -5 ; -2 -1 5 1 ; 3 3 -1 2]

A =

1 2 5 3
2 1 3 -5
-2 -1 5 1
3 3 -1 2

b = [-3 3 -2 3]

b =

-3 3 -2 3

B=b'

B =

-3
3
-2
3

uiopen('C:\Users\Excalibur\Documents\MATLAB\sor.m',1)
SOR (A,B,X0,0.001,1.75)
{#Warning: Could not find an exact (case-sensitive) match for 'SOR'.
C:\Users\Excalibur\Documents\MATLAB\sor.m is a case-insensitive match and will be
used
instead.
You can improve the performance of your code by using exact
name matches and we therefore recommend that you update your
usage accordingly. Alternatively, you can disable this warning using
warning('off','MATLAB:dispatcher:InexactCaseMatch').
This warning will become an error in future releases.}#
{#??? Error using ==> mtimes
Inner matrix dimensions must agree.

Error in ==> <a href="matlab:


opentoline('C:\Users\Excalibur\Documents\MATLAB\sor.m',14,0)">sor at 14</a>
xnew = (inv(D+w*L))*(((1-w)*D-w*U)*x0 +w*b);
}#
sor (A,B,X0,0.001,1.75)
{#??? Error using ==> mtimes
Inner matrix dimensions must agree.

Error in ==> <a href="matlab:


opentoline('C:\Users\Excalibur\Documents\MATLAB\sor.m',14,0)">sor at 14</a>
xnew = (inv(D+w*L))*(((1-w)*D-w*U)*x0 +w*b);
}#
sor (A,B,X0,0.001,1)
{#??? Error using ==> mtimes
Inner matrix dimensions must agree.

Error in ==> <a href="matlab:


opentoline('C:\Users\Excalibur\Documents\MATLAB\sor.m',14,0)">sor at 14</a>
xnew = (inv(D+w*L))*(((1-w)*D-w*U)*x0 +w*b);
}#
A=[6,2,1,-1;2,4,1,0;1,1,4,-1;-1,0,-1,3]

A =

6 2 1 -1
2 4 1 0
1 1 4 -1
-1 0 -1 3

B=[9;13;11;8]

B =

9
13
11
8

sor (A,B,X0,0.001,1)
{#??? Error using ==> mtimes
Inner matrix dimensions must agree.

Error in ==> <a href="matlab:


opentoline('C:\Users\Excalibur\Documents\MATLAB\sor.m',14,0)">sor at 14</a>
xnew = (inv(D+w*L))*(((1-w)*D-w*U)*x0 +w*b);
}#
A=[6,2,1,-1;2,4,1,0;1,1,4,-1;-1,0,-1,3]

A =

6 2 1 -1
2 4 1 0
1 1 4 -1
-1 0 -1 3

B=[9;13;11;8]

B =

9
13
11
8

X0=[0;0;0;0]

X0 =

0
0
0
0

sor (A,B,X0,0.000001,1)
Columns 1 through 8

0 1.5000 1.0000 0.9115 0.9697 0.9930 0.9983 0.9995


0 2.5000 2.3125 2.0794 2.0175 2.0047 2.0014 2.0004
0 1.7500 2.8594 2.9906 2.9950 2.9976 2.9993 2.9998
0 3.7500 3.9531 3.9673 3.9882 3.9969 3.9992 3.9998

Columns 9 through 13

0.9999 1.0000 1.0000 1.0000 1.0000


2.0001 2.0000 2.0000 2.0000 2.0000
3.0000 3.0000 3.0000 3.0000 3.0000
3.9999 4.0000 4.0000 4.0000 4.0000

ans =

1.0000
2.0000
3.0000
4.0000

A = [1 2 5 3 ; 2 1 3 -5 ; -2 -1 5 1 ; 3 3 -1 2]

A =

1 2 5 3
2 1 3 -5
-2 -1 5 1
3 3 -1 2

b = [-3 3 -2 3]

b =

-3 3 -2 3

B=b'

B =

-3
3
-2
3

sor (A,B,X0,0.001,1)
{#Warning: Rank deficient, rank = 0, tol = NaN.}#
> In <a href="matlab:
opentoline('C:\Users\Excalibur\Documents\MATLAB\sor.m',19,1)">sor at 19</a>
1.0e+307 *

Columns 1 through 8

0 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


0 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 9 through 16

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 17 through 24

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 25 through 32

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 33 through 40

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 41 through 48

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 49 through 56

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 57 through 64

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 65 through 72

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 73 through 80

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 81 through 88

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000
Columns 89 through 96

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 97 through 104

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 105 through 112

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 113 through 120

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 121 through 128

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 129 through 136

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 137 through 144

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 145 through 152

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 153 through 160

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 161 through 168

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 169 through 176

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 177 through 184

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 185 through 192

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 193 through 200

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 201 through 208

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 209 through 216

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 217 through 224

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000
Columns 225 through 232

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 233 through 240

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 241 through 248

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 249 through 256

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 257 through 264

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 265 through 272

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 273 through 280

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 281 through 288

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 289 through 296


0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 297 through 304

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 305 through 312

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 313 through 320

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 321 through 327

0.0000 -0.0002 0.0014 -0.0128 0.1140 -1.0115 NaN


-0.0001 0.0013 -0.0113 0.1001 -0.8882 7.8832 NaN
-0.0000 0.0002 -0.0014 0.0121 -0.1071 0.9505 NaN
0.0002 -0.0016 0.0141 -0.1248 1.1078 -9.8322 NaN

ans =

NaN
NaN
NaN
NaN

sor (A,B,X0,0.001,1.75)
{#Warning: Rank deficient, rank = 0, tol = NaN.}#
> In <a href="matlab:
opentoline('C:\Users\Excalibur\Documents\MATLAB\sor.m',19,1)">sor at 19</a>
1.0e+308 *

Columns 1 through 8

0 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


0 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 9 through 16

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 17 through 24

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 25 through 32

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 33 through 40

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 41 through 48

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 49 through 56

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 57 through 64

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 65 through 72

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 73 through 80

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 81 through 88
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 89 through 96

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 97 through 104

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 105 through 112

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 113 through 120

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 121 through 128

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 129 through 136

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 137 through 144

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 145 through 152

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 153 through 160

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 161 through 168

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 169 through 176

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 177 through 184

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 185 through 192

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0001


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0005
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0001
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0010

Columns 193 through 195

0.0027 -0.1076 NaN


-0.0196 0.7740 NaN
-0.0047 0.1848 NaN
0.0409 -1.6184 NaN

ans =

NaN
NaN
NaN
NaN

sor (A,B,X0,0.001,1.9387)
{#Warning: Rank deficient, rank = 0, tol = 1.#INFe+000.}#
> In <a href="matlab:
opentoline('C:\Users\Excalibur\Documents\MATLAB\sor.m',19,1)">sor at 19</a>
1.0e+308 *
Columns 1 through 8

0 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


0 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 9 through 16

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 17 through 24

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 25 through 32

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 33 through 40

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 41 through 48

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 49 through 56

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 57 through 64

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 65 through 72

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 73 through 80

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 81 through 88

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 89 through 96

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 97 through 104

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 105 through 112

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 113 through 120

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 121 through 128

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 129 through 136

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000
Columns 137 through 144

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 145 through 152

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 153 through 160

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 161 through 168

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 169 through 176

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 177 through 181

0.0000 -0.0000 0.0001 -0.0046 0.2386


-0.0000 0.0000 -0.0007 0.0342 -1.7725
-0.0000 0.0000 -0.0002 0.0093 -0.4805
0.0000 -0.0000 0.0015 -0.0785 Inf

ans =

1.0e+308 *

0.2386
-1.7725
-0.4805
Inf

uiopen('C:\Users\Excalibur\Documents\MATLAB\sor.m',1)
uiopen('C:\Users\Excalibur\Documents\MATLAB\sor.m',1)
uiopen('C:\Users\Excalibur\Documents\MATLAB\sor.m',1)
sor (A,B,X0,0.1,1.9387)
{#Warning: Rank deficient, rank = 0, tol = 1.#INFe+000.}#
> In <a href="matlab:
opentoline('C:\Users\Excalibur\Documents\MATLAB\sor.m',19,1)">sor at 19</a>
1.0e+308 *

Columns 1 through 8

0 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


0 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 9 through 16

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 17 through 24

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 25 through 32

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 33 through 40

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 41 through 48

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 49 through 56

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 57 through 64

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000
Columns 65 through 72

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 73 through 80

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 81 through 88

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 89 through 96

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 97 through 104

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 105 through 112

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 113 through 120

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 121 through 128

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 129 through 136

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 137 through 144

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 145 through 152

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 153 through 160

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 161 through 168

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 169 through 176

0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000


-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
-0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000
0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000 0.0000 -0.0000

Columns 177 through 181

0.0000 -0.0000 0.0001 -0.0046 0.2386


-0.0000 0.0000 -0.0007 0.0342 -1.7725
-0.0000 0.0000 -0.0002 0.0093 -0.4805
0.0000 -0.0000 0.0015 -0.0785 Inf

ans =

1.0e+308 *

0.2386
-1.7725
-0.4805
Inf

uiopen('C:\Users\Excalibur\Documents\MATLAB\sor.m',1)
opentoline('C:\Users\Excalibur\Documents\MATLAB\sor.m',19,1)
uiopen('C:\Users\Excalibur\Documents\MATLAB\sor.m',1)
uiopen('C:\Users\Excalibur\Documents\MATLAB\sor.m',1)
% Modify expression to add input arguments.
% Example:
% a = [1 2 3; 4 5 6];
% foo(a);

sor
{#??? Input argument "A" is undefined.

Error in ==> <a href="matlab:


opentoline('C:\Users\Excalibur\Documents\MATLAB\sor.m',2,0)">sor at 2</a>
[n,m]=size(A);x=x0;C=-A;
}#
diary off

You might also like