/usr/share/freemat/help/text/vertcat.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 19 20 21 22 23 24 25 26 | VERTCAT VERTCAT Overloaded Vertical Concatenation
Usage
This is a method for a class that is invoked to concatenate two or more
variables of the same class type together. Besides being called when
you invoke
c = vertcat(a,b,c)
when a is a class, it is also called for
c = [a;b;c]
when one of the variables is a class. The exact meaning of
vertical concatenation depends on the class you have designed.
VERTCAT VERTCAT Horizontal Array Concatenation
Usage
This function concatenates arrays vertically (along the row
dimension). The syntax for its use is
d = vertcat(a,b,c)
which is equivalent to the statement d = [a;b;c].
|