Home > Common Problem > matlab find function usage

matlab find function usage

藏色散人
Release: 2020-05-11 10:49:41
Original
12776 people have browsed it

matlab find function usage

matlab find function usage

In the first step, we first need to know that the find function in matlab can find non-0 The subscript and value of the element can also be found to meet the conditions. Enter help find in the command line window, and you can see the function usage, as shown in the following figure:

matlab find function usage

The second step is to enter a=[1 0 5 4 3 8 0 9] in the matlab command line window and press Enter to create an array a, as shown in the following figure:

matlab find function usage

In the third step, enter find(a) and press the Enter key to find the subscripts of all non-0 elements in the a array, as shown in the following figure:

matlab find function usage

In the fourth step, enter find(a>4) to find the element subscripts of the a array greater than 4, as shown in the figure below:

matlab find function usage

In the fifth step, enter [i ,j,k]=find(a), you can find the subscript position and value of the non-0 element of the matrix a. Use the find function as needed, mainly to find the element subscript or find the non-0 element according to the conditions, as shown in the figure below :

matlab find function usage##

The above is the detailed content of matlab find function usage. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template