Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

lapack(3) [php man page]

LAPACK(3)								 1								 LAPACK(3)

The Lapack class

INTRODUCTION
LAPACK is written in Fortran 90 and provides routines for solving systems of simultaneous linear equations, least-squares solutions of linear systems of equations, eigenvalue problems, and singular value problems. This extension wraps the LAPACKE C bindings to allow access to several processes exposed by the library. Most functions work with arrays of arrays, representing rectangular matrices in row major order - so a two by two matrix [1 2; 3 4] would be array(array(1, 2), array(3, 4)). All of the functions are called statically, for example $eig = Lapack::eigenvalues($a); CLASS SYNOPSIS
Lapack Lapack Methods o publicstatic array Lapack::eigenValues (array $a, [array $left], [array $right]) o publicstatic array Lapack::identity (int $n) o publicstatic array Lapack::leastSquaresByFactorisation (array $a, array $b) o publicstatic array Lapack::leastSquaresBySVD (array $a, array $b) o publicstatic array Lapack::pseudoInverse (array $a) o publicstatic array Lapack::singularValues (array $a) o publicstatic array Lapack::solveLinearEquation (array $a, array $b) PHP Documentation Group LAPACK(3)

Check Out this Related Man Page

MONGO(3)								 1								  MONGO(3)

The Mongo class [deprecated]

INTRODUCTION
A connection between PHP and MongoDB. This class extends MongoClient and provides access to several deprecated methods. For backwards compatibility, it also defaults the "w" option of its constructor argument to 0, which does not require write operations to be acknowledged by the server. See MongoClient.__construct(3) for more information. Warning This class has been DEPRECATED as of version 1.3.0. Relying on this feature is highly discouraged. Please use MongoClient instead. CLASS SYNOPSIS
Mongo Mongoextends MongoClient Methods o protected bool Mongo::connectUtil (void ) o publicstatic int Mongo::getPoolSize (void ) o public string Mongo::getSlave (void ) o public bool Mongo::getSlaveOkay (void ) o public array Mongo::poolDebug (void ) o publicstatic bool Mongo::setPoolSize (int $size) o public bool Mongo::setSlaveOkay ([bool $ok = true]) o public string Mongo::switchSlave (void ) Inherited methods o public bool MongoClient::close ([boolean|string $connection]) o public bool MongoClient::connect (void ) o public array MongoClient::dropDB (mixed $db) o public MongoDB MongoClient::__get (string $dbname) o publicstatic array MongoClient::getConnections (void ) o public array MongoClient::getHosts (void ) o public array MongoClient::getReadPreference (void ) o public array MongoClient::getWriteConcern (void ) o public bool MongoClient::killCursor (string $server_hash, int|MongoInt64 $id) o public array MongoClient::listDBs (void ) o public MongoCollection MongoClient::selectCollection (string $db, string $collection) o public MongoDB MongoClient::selectDB (string $name) o public bool MongoClient::setReadPreference (string $read_preference, [array $tags]) o public bool MongoClient::setWriteConcern (mixed $w, [int $wtimeout]) o public string MongoClient::__toString (void ) PHP Documentation Group MONGO(3)
Man Page