Welcome to our Support Center
Array Resume
In this section youβll find a list of all array fonctionalities.
Β | ICONS | DESCRIPTION |
Returns the number of elements in each dimension of n-dimensional array. | ||
Returns the element or subarray of n-dimensional array at index. | ||
Replaces an element or subarray in a n-dimensional array at the point you specify in index. | ||
Inserts an subarray into n-dimensional array at the point you specify in index and axis. | ||
Deletes an element or subarray from n-dimensional array of length elements starting at index. | ||
Creates a n-dimensional tensor in which every element is initialized to the value of element. | ||
Build arrays to an n-dimensional array. | ||
Concatenate arrays to an n-dimensional array. | ||
Returns a portion of array starting at index and containing length elements. | ||
Returns the maximum and minimum values found in array, along with the indexes for each value. | ||
Changes the dimensions of an array according to the values of dimension size 0..m-1. | ||
Rearranges array by sorting the elements in ascending order. | ||
Rearranges the elements of an array in a pseudorandom order. | ||
Reverses the order of the elements in array, where array is of any type. | ||
Searches for an element in an array starting at start index. | ||
Divides array at index and returns the two portions with the element of index at the beginning of second subarray. | ||
Divides array at index and returns the two portions with the element of index at the beginning of second subarray. | ||
Rotates the elements of array the number of places and in the direction indicated by n. | ||
Adds 1 to the specified elements of a n-dimentional array. | ||
Subtracts 1 from the specified element of a n-dimentional array. | ||
Linearly interpolates a decimal y value from an array of numbers or points using a fractional index or x value. | ||
Interpolates points in a one-dimentional array that represents a two-dimentional non-descending graph. | ||
Interleaves corresponding elements from the input arrays into a single output array. | ||
Divides the elements of array into the output arrays, placing elements into the outputs successively. | ||
Rearranges the elements of n-dimensional array such that array becomes transposed array. | ||
Removes duplicate elements from a one-dimentional array. |