forked from johannesgerer/jburkardt-m
-
Notifications
You must be signed in to change notification settings - Fork 0
/
c4lib.html
165 lines (139 loc) · 3.98 KB
/
c4lib.html
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<html>
<head>
<title>
C4LIB - A Single Precision Complex Arithmetic Utility Library
</title>
</head>
<body bgcolor="#EEEEEE" link="#CC0000" alink="#FF3300" vlink="#000055">
<h1 align = "center">
C4LIB <br> A Single Precision Complex Arithmetic Utility Library
</h1>
<hr>
<p>
<b>C4LIB</b>
is a MATLAB library which
implements certain
elementary functions for "C4" or
single precision complex variables.
</p>
<p>
The symbol "C4" is used to suggest a single precision complex
variable. Here the 4 indicates that the underlying pair of
real numbers each use 4 bytes of storage.
</p>
<p>
C4LIB contains routines that operate on scalars, vectors or
doubly dimensioned arrays of C4's. A vector of C4's is denoted
a C4VEC, and a doubly dimensioned array is a C4MAT.
</p>
<h3 align = "center">
Licensing:
</h3>
<p>
The computer code and data files described and made available on this web page
are distributed under
<a href = "../../txt/gnu_lgpl.txt">the GNU LGPL license.</a>
</p>
<h3 align = "center">
Languages:
</h3>
<p>
<b>C4LIB</b> is available in
<a href = "../../c_src/c4lib/c4lib.html">a C version</a> and
<a href = "../../cpp_src/c4lib/c4lib.html">a C++ version</a> and
<a href = "../../f77_src/c4lib/c4lib.html">a FORTRAN77 version</a> and
<a href = "../../f_src/c4lib/c4lib.html">a FORTRAN90 version</a> and
<a href = "../../m_src/c4lib/c4lib.html">a MATLAB version</a> and
<a href = "../../py_src/c4lib/c4lib.html">a Python version</a>.
</p>
<h3 align = "center">
Related Programs:
</h3>
<p>
<a href = "../../m_src/c8lib/c8lib.html">
C8LIB</a>,
a MATLAB library which
contains many utility routines, using "C8" or
"double precision complex" arithmetic.
</p>
<p>
<a href = "../../m_src/i4lib/i4lib.html">
I4LIB</a>,
a MATLAB library which
contains many utility routines, using "I4" or "single precision integer"
arithmetic.
</p>
<p>
<a href = "../../m_src/r8lib/r8lib.html">
R8LIB</a>,
a MATLAB library which
contains many utility routines, using "R8" or
"double precision real" arithmetic.
</p>
<p>
<a href = "../../m_src/subpak/subpak.html">
SUBPAK</a>,
a MATLAB library which
contains many utility routines;
</p>
<h3 align = "center">
Source Code:
</h3>
<p>
<ul>
<li>
<a href = "c4_uniform_01.m">c4_uniform_01.m</a>,
returns a unit pseudorandom C4.
</li>
<li>
<a href = "c4mat_print.m">c4mat_print.m</a>,
prints a C4MAT.
</li>
<li>
<a href = "c4mat_print_some.m">c4mat_print_some.m</a>,
prints some of a C4MAT.
</li>
<li>
<a href = "c4mat_uniform_01.m">c4mat_uniform_01.m</a>,
returns a unit pseudorandom C4MAT.
</li>
<li>
<a href = "c4vec_print.m">c4vec_print.m</a>,
prints a C4VEC.
</li>
<li>
<a href = "timestamp.m">timestamp.m</a>,
prints the current YMDHMS date as a timestamp;
</li>
</ul>
</p>
<h3 align = "center">
Examples and Tests:
</h3>
<p>
<ul>
<li>
<a href = "c4lib_test.m">c4lib_test.m</a>,
runs all the tests;
</li>
<li>
<a href = "c4lib_test_output.txt">c4lib_test_output.txt</a>,
the output file;
</li>
<li>
<a href = "c4lib_test29.m">c4lib_test29.m</a>,
tests C4MAT_UNIFORM_01;
</li>
</ul>
</p>
<p>
You can go up one level to <a href = "../m_src.html">
the MATLAB source codes</a>.
</p>
<hr>
<i>
Last revised on 03 April 2014.
</i>
<!-- John Burkardt -->
</body>
</html>