%> This function overloads a Matlab built-in function.
%>
%> @b Usage
%>
%> @b C=HORZCAT(F,A) concatenates the Faust F and A horizontally. A is a Faust or a sparse/full matrix. The result is the Faust C. @b HORZCAT(F,A) is the same as [F,G].<br/>
%> Vertical concatenation [F;A;B;…] where F is a Faust and A, B, … are Faust objects or sparse/full matrices.
%===
%>
%> It's equivalent to cat(1, F, A, B, …).
%>
%> This function overloads a Matlab built-in function.
%>
%> @b Usage
%>
%> @b C=VERTCAT(F,A) concatenates the Faust F and A vertically. A is a Faust or a sparse/full matrix. The result is the Faust C. @b VERTCAT(F,A) is the same as [F;G].<br/>
...
...
@@ -1537,6 +1542,39 @@ classdef Faust
error('Function not implemented in the Faust class.');