sum_MATLAB | R Documentation |
Returns the sum of the elements of the first input
sum_MATLAB(A, dim) ## S4 method for signature 'array,missing' sum_MATLAB(A) ## S4 method for signature 'array,character' sum_MATLAB(A, dim) ## S4 method for signature 'array,numeric' sum_MATLAB(A, dim)
A |
vector, matrix or array |
dim |
dimention over which A is to be summed |
The total, row or column sum of A
sum_MATLAB(A = array, dim = missing)
: Sum elements of A along the first array dimension
whose size does not equal 1
sum_MATLAB(A = array, dim = character)
: Computes the sum of all elements of A
sum_MATLAB(A = array, dim = numeric)
: Computes the sum of all elements of A
Waldir Leoncio
x1 <- array(1:9, c(3, 3)) sum_MATLAB(x1) sum_MATLAB(x1, "all") sum_MATLAB(x1, 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.