From c0c0582462720ed597b00e116506570577614e89 Mon Sep 17 00:00:00 2001 From: shamikam Date: Tue, 7 Nov 2017 15:59:48 +0530 Subject: initial commit --- help/en_US/scilab_en_US_help/cummax.html | 87 ++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 help/en_US/scilab_en_US_help/cummax.html (limited to 'help/en_US/scilab_en_US_help/cummax.html') diff --git a/help/en_US/scilab_en_US_help/cummax.html b/help/en_US/scilab_en_US_help/cummax.html new file mode 100644 index 0000000..752f381 --- /dev/null +++ b/help/en_US/scilab_en_US_help/cummax.html @@ -0,0 +1,87 @@ + + + cummax + + + +
+ + + + +
+ << corrmtx + + + FOSSEE Signal Processing Toolbox + + + cummin >> + +
+
+
+ + + + FOSSEE Signal Processing Toolbox >> FOSSEE Signal Processing Toolbox > cummax + +

+

cummax

+

Cumulative maximum

+ + +

Calling Sequence

+
M = cummax(A)
+returns the cumulative maximum of the arguments of A. The dimension
+of M is same as the dimension of A. If A is a 2D matrix, the operation
+is performed along the columns. For a hypermatrix, the operation is
+performed along the first non-zero dimension
+M = cummax(A,dim)
+The operation is performed along the dimension specified by dim
+M = cummax(_,direction)
+direction specifies as the direction of operation
+ +

Parameters

+
+ +

Examples

+
1) Cumulative maximum values in a vector
+v = [8 9 1 10 6 1 3 6 10 10]
+M = cummax(v)
+
+Expected output: [8 8 1 1 1 1 1 1 1 1]
+ +

Authors

+
+ +

See also

+
+
+ +
+ + + + + + +
Report an issue
+ << corrmtx + + + FOSSEE Signal Processing Toolbox + + + cummin >> + +
+
+
+ + -- cgit