/usr/share/freemat/help/text/dot.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 13 14 15 16 17 18 | DOT DOT Dot Product Function
Usage
Computes the scalar dot product of its two arguments. The general
syntax for its use is
y = dot(x,z)
where x and z are numerical vectors of the same length. If
x and z are multi-dimensional arrays of the same size, then
the dot product is taken along the first non-singleton dimension.
You can also specify the dimension to take the dot product along using
the alternate form
y = dot(x,z,dim)
where dim specifies the dimension to take the dot product along.
|