
find - Find indices and values of nonzero elements - MATLAB
This MATLAB function returns a vector containing the linear indices of each nonzero element in array X.
Find Array Elements That Meet Conditions - MATLAB & Simulink
For more information, see Array Indexing. Some problems require information about the locations of the array elements that meet a condition rather than their actual values. In this example, you …
which - Locate functions and files - MATLAB - MathWorks
If item is a MATLAB ® function in a MATLAB code file (.m,.mlx, or .p extension), or a saved Simulink ® model (.slx or .mdl extension), then which displays the full path for the …
strfind - Find strings within other strings - MATLAB - MathWorks
This MATLAB function searches str for occurrences of pat.
eig - Eigenvalues and eigenvectors - MATLAB - MathWorks
This MATLAB function returns a column vector containing the eigenvalues of square matrix A.
fzero - Root of nonlinear function - MATLAB - MathWorks
This MATLAB function tries to find a point x where fun(x) = 0.
How to find the position of a number in an array? - MATLAB …
Feb 15, 2018 · You can use the “find” function to return the positions corresponding to an array element value. For example: a = [7 8 8 2 5 6]; linearIndices = find (a==8) linearIndices = 2 3 …
Find index with multiple condition, using find function - MATLAB ...
Sep 21, 2016 · Find index with multiple condition, using find... Learn more about multiple vector comparison, find function, & condition with multiple size, large files
gradient - Numerical gradient - MATLAB - MathWorks
This MATLAB function returns the one-dimensional numerical gradient of vector F.
findpeaks - Find local maxima - MATLAB - MathWorks
This MATLAB function returns a vector with the local maxima (peaks) of the input signal vector, y.