File: leftmatrixdiv.dia.ref

package info (click to toggle)
scilab 5.2.2-9
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 334,832 kB
  • ctags: 52,586
  • sloc: xml: 526,945; ansic: 223,590; fortran: 163,080; java: 56,934; cpp: 33,840; tcl: 27,936; sh: 20,397; makefile: 9,908; ml: 9,451; perl: 1,323; cs: 614; lisp: 30
file content (121 lines) | stat: -rw-r--r-- 3,983 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
// =============================================================================
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) ????-2008 - INRIA Michael Baudin
//
//  This file is distributed under the same license as the Scilab package.
// =============================================================================
//define tools
function A=testmat1(a,n)
	//eigen values are given by a dilation of nth roots of 1
	A=diag(a*ones(1,n-1),1)+diag((1/a)*ones(1,n-1),-1)
	A(1,n)=1/a;A(n,1)=a
endfunction
function r=Err(x)
	r=norm(x,1)
endfunction
rand('normal')
//==========================================================================
//==============================    \         ==============================
//==========================================================================
function x=leftmatrixdiv(A,B)
  x=A\B
endfunction
//scalar division
//-----Square matrix-----
n=5;  A=rand(n,n);b=rand(2,n+1);
if leftmatrixdiv(A,[]) <>[] then bugmes();quit;end
if execstr('leftmatrixdiv(A,B)','errcatch')==0 then bugmes();quit;end
//Small dimensions real
n=5;
b=rand(n,2);A=rand(n,n);
x=leftmatrixdiv(A,b);
if Err(A*x-b)>200*%eps then bugmes();quit;end
//Small dimensions complex
b=rand(n,2)+%i;A=rand(n,n);
x=leftmatrixdiv(A,b);
if Err(A*x-b)>500*%eps then bugmes();quit;end
b=rand(n,2);A=rand(n,n)+%i;
x=leftmatrixdiv(A,b);
if Err(A*x-b)>200*%eps then bugmes();quit;end
b=rand(n,2)+%i;A=rand(n,n)+%i;
x=leftmatrixdiv(A,b);
if Err(A*x-b)>200*%eps then bugmes();quit;end
//Large dimensions real
n=50;
b=rand(n,2);A=rand(n,n);
x=leftmatrixdiv(A,b);
if Err(A*x-b)>10^6*%eps then bugmes();quit;end
//Small dimensions complex
b=rand(n,2)+%i;A=rand(n,n);
x=leftmatrixdiv(A,b);
if Err(A*x-b)>50000*%eps then bugmes();quit;end
b=rand(n,2);A=rand(n,n)+%i;
x=leftmatrixdiv(A,b);
if Err(A*x-b)>50000*%eps then bugmes();quit;end
b=rand(n,2)+%i;A=rand(n,n)+%i;
x=leftmatrixdiv(A,b);
if Err(A*x-b)>50000*%eps then bugmes();quit;end
//-----Rectangular matrix-----
n=5;m=3; A=rand(m,n);b=rand(n+1,2);
if leftmatrixdiv(A,[]) <>[] then bugmes();quit;end
if execstr('leftmatrixdiv(A,b)','errcatch')==0 then bugmes();quit;end
//Small dimensions real
n=5;m=3;
b=rand(m,2);A=rand(m,n);
x=leftmatrixdiv(A,b);
if Err(A'*A*x-A'*b)>200*%eps then bugmes();quit;end
n=3;m=5;
b=rand(m,2);A=rand(m,n);
x=leftmatrixdiv(A,b);
if Err(A'*A*x-A'*b)>1000*%eps then bugmes();quit;end
//Small dimensions complex
n=5;m=3;
b=rand(m,2)+%i;A=rand(m,n);
x=leftmatrixdiv(A,b);
if Err(A'*A*x-A'*b)>1000*%eps then bugmes();quit;end
n=5;m=3;
b=rand(m,2);A=rand(m,n)+%i;
x=leftmatrixdiv(A,b);
if Err(A'*A*x-A'*b)>1000*%eps then bugmes();quit;end
b=rand(m,2)+%i;A=rand(m,n)+%i;
x=leftmatrixdiv(A,b);
if Err(A'*A*x-A'*b)>1000*%eps then bugmes();quit;end
n=3;m=5;
b=rand(m,2)+%i;A=rand(m,n);
x=leftmatrixdiv(A,b);
if Err(A'*A*x-A'*b)>1000*%eps then bugmes();quit;end
n=3;m=5;
b=rand(m,2);A=rand(m,n)+%i;
x=leftmatrixdiv(A,b);
if Err(A'*A*x-A'*b)>1000*%eps then bugmes();quit;end
n=3;m=5;
b=rand(m,2)+%i;A=rand(m,n)+%i;
x=leftmatrixdiv(A,b);
if Err(A'*A*x-A'*b)>1000*%eps then bugmes();quit;end
//LArge dimension real
n=40;m=20;
b=rand(m,2);A=rand(m,n);
x=leftmatrixdiv(A,b);
if Err(A'*A*x-A'*b)>10000*%eps then bugmes();quit;end
b=rand(m,2);A=rand(m,n);
x=leftmatrixdiv(A,b);
if Err(A'*A*x-A'*b)>10000*%eps then bugmes();quit;end
//Large dimensions complex
b=rand(m,2)+%i;A=rand(m,n);
x=leftmatrixdiv(A,b);
if Err(A'*A*x-A'*b)>10000*%eps then bugmes();quit;end
b=rand(m,2);A=rand(m,n)+%i;
x=leftmatrixdiv(A,b);
if Err(A'*A*x-A'*b)>10000*%eps then bugmes();quit;end
b=rand(m,2)+%i;A=rand(m,n)+%i;
x=leftmatrixdiv(A,b);
if Err(A'*A*x-A'*b)>10000*%eps then bugmes();quit;end
b=rand(m,2)+%i;A=rand(m,n);
x=leftmatrixdiv(A,b);
if Err(A'*A*x-A'*b)>10000*%eps then bugmes();quit;end
b=rand(m,2);A=rand(m,n)+%i;
x=leftmatrixdiv(A,b);
if Err(A'*A*x-A'*b)>10000*%eps then bugmes();quit;end
b=rand(m,2)+%i;A=rand(m,n)+%i;
x=leftmatrixdiv(A,b);
if Err(A'*A*x-A'*b)>10000*%eps then bugmes();quit;end