Borrar filtros
Borrar filtros

what is meaning of this plzz tell me

3 visualizaciones (últimos 30 días)
Mohd Shahrukh
Mohd Shahrukh el 21 de Mzo. de 2018
Comentada: Star Strider el 26 de Mzo. de 2018
feat=[]; class=[];

Respuesta aceptada

Star Strider
Star Strider el 21 de Mzo. de 2018
Those assignments set the ‘feat’ and ‘class’ variables to empty arrays [].
Note that class (link) is a MATLAB function, and assigning a variable the same name ‘overshadows’ it. This will cause problems later if you want to use the class function.
  2 comentarios
Mohd Shahrukh
Mohd Shahrukh el 26 de Mzo. de 2018
Thnkuu so much
Star Strider
Star Strider el 26 de Mzo. de 2018
As always, my pleasure.

Iniciar sesión para comentar.

Más respuestas (1)

Walter Roberson
Walter Roberson el 21 de Mzo. de 2018
When you assign [] to an entire variable, it assigns a double precision value that is 0 rows by 0 columns -- the empty double precision array.
When you assign [] to an indexed variable, such as feat(3,:) = [], then the meaning is quite different: it means to delete the indicated portion of the variable.

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by