/usr/share/freemat/help/text/hermitian.mdc is in freemat-help 4.0-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | HERMITIAN HERMITIAN Matrix Hermitian (Conjugate Transpose) Operator
Usage
Computes the Hermitian of the argument (a 2D matrix). The syntax for its use is
y = a';
where a is a M x N numerical matrix. The output y is a numerical matrix
of the same type of size N x M. This operator is the conjugating transpose,
which is different from the transpose operator .' (which does not
conjugate complex values).
|