Skip to content

Commit b0c7f99

Browse files
committed
initial commit
0 parents  commit b0c7f99

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+9475
-0
lines changed

INSTALL

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
$ ruby install.rb
3+
4+
If you have prebuilt binaries, this will install the package.
5+
6+
If you are compiling source, this will configure, make, make docs, and
7+
install.
8+
9+
linalg requires LAPACK, a legacy Fortran library for linear algebra.
10+
Your platform should have a pre-built package available for you to
11+
install (its dependencies are BLAS and libf2c).
12+
13+
Individual options are
14+
15+
$ ruby install.rb config
16+
$ ruby install.rb make
17+
$ ruby install.rb install
18+
$ ruby install.rb doc
19+
$ ruby install.rb uninstall
20+
$ ruby install.rb clean
21+
$ ruby install.rb distclean
22+
$ ruby install.rb test
23+
24+
25+
26+

LICENSE

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
"linalg -- Ruby Linear Algebra Package" is copyrighted free software
3+
by James M. Lawrence. Distributed under the MIT license.
4+
5+
Copyright (c) 2008 James M. Lawrence
6+
7+
Permission is hereby granted, free of charge, to any person obtaining
8+
a copy of this software and associated documentation files (the
9+
"Software"), to deal in the Software without restriction, including
10+
without limitation the rights to use, copy, modify, merge, publish,
11+
distribute, sublicense, and/or sell copies of the Software, and to
12+
permit persons to whom the Software is furnished to do so, subject to
13+
the following conditions:
14+
15+
The above copyright notice and this permission notice shall be
16+
included in all copies or substantial portions of the Software.
17+
18+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)