Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 1440351e authored by hhakim's avatar hhakim
Browse files

Fixing issue about not visible brief descs of vertcat(), horzcat() (raised by issue #50).

parent 4524fc93
Branches
Tags v7.1.1
No related merge requests found
...@@ -18,7 +18,7 @@ function parse_doxy_block { ...@@ -18,7 +18,7 @@ function parse_doxy_block {
local FUNC=$(echo $1 | tr '[a-z]' '[A-Z]') local FUNC=$(echo $1 | tr '[a-z]' '[A-Z]')
local FUNC_LINE=$(echo "$3" | sed -e 's/^[[:blank:]]\{1,\}//') local FUNC_LINE=$(echo "$3" | sed -e 's/^[[:blank:]]\{1,\}//')
echo -e "$2" | sed -e "{ echo -e "$2" | sed -e "{
s/^[[:blank:]]*%=\{1,\}//; s/^[[:blank:]]*%=\{4,\}//;
s/%>[[:blank:]]*@brief/%% $FUNC/; s/%>[[:blank:]]*@brief/%% $FUNC/;
s/^\([[:blank:]]\{1,\}\)%> @param F/\1% SPECS: $FUNC_LINE:\n\1\t% - Parameter F: /; s/^\([[:blank:]]\{1,\}\)%> @param F/\1% SPECS: $FUNC_LINE:\n\1\t% - Parameter F: /;
s/%>/%/; s/%>/%/;
...@@ -51,7 +51,7 @@ cp "$INPUT_FILE" "$OUTPUT_FILE" ...@@ -51,7 +51,7 @@ cp "$INPUT_FILE" "$OUTPUT_FILE"
[ ! "$?" = 0 ] && echo "ERROR in copying file." >&2 && exit 4 [ ! "$?" = 0 ] && echo "ERROR in copying file." >&2 && exit 4
DOXY_BLOCKS_LIMITS=($(sed -ne '/[[:blank:]]*\%=\{1,\}[[:blank:]]*/=' "$INPUT_FILE")) DOXY_BLOCKS_LIMITS=($(sed -ne '/[[:blank:]]*\%=\{4,\}[[:blank:]]*/=' "$INPUT_FILE"))
typeset -i DOXY_BLOCK_ID=0 typeset -i DOXY_BLOCK_ID=0
for FUNC in $FUNCTIONS for FUNC in $FUNCTIONS
......
...@@ -1482,13 +1482,13 @@ classdef Faust ...@@ -1482,13 +1482,13 @@ classdef Faust
end end
%====================================================================== %======================================================================
%> Horizontal concatenation [F,A] of the Faust objects F and A. %> Horizontal concatenation [F,A] of F and A which is a Faust or a matrix (sparse or full).
%> %===
%> It's equivalent to cat(2, F, A). %> It's equivalent to cat(2, F, A).
%> %>
%> @b Usage %> @b Usage
%> %>
%> &nbsp;&nbsp;&nbsp; @b C=HORZCAT(F,A) concatenates the Fausts F and A horizontally. The result is the Faust C. @b HORZCAT(F,A) is the same as [F,G].<br/> %> &nbsp;&nbsp;&nbsp; @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/>
%> %>
%> <p>@b See @b also Faust.vertcat, Faust.cat. %> <p>@b See @b also Faust.vertcat, Faust.cat.
%====================================================================== %======================================================================
...@@ -1497,13 +1497,13 @@ classdef Faust ...@@ -1497,13 +1497,13 @@ classdef Faust
end end
%====================================================================== %======================================================================
%> Vertical concatenation [F;A] of the Faust objects F and A. %> Vertical concatenation [F;A] of F and A which is a Faust or a matrix (sparse of full).
%> %===
%> It's equivalent to cat(1, F, A). %> It's equivalent to cat(1, F, A).
%> %>
%> @b Usage %> @b Usage
%> %>
%> &nbsp;&nbsp;&nbsp; @b C=VERTCAT(F,A) concatenates the Fausts F and A vertically. The result is the Faust C. @b VERTCAT(F,A) is the same as [F;G].<br/> %> &nbsp;&nbsp;&nbsp; @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/>
%> %>
%> <p>@b See @b also Faust.horzcat, Faust.cat. %> <p>@b See @b also Faust.horzcat, Faust.cat.
%====================================================================== %======================================================================
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment