Borrar filtros
Borrar filtros

What type of data is this isCategoricalPrd = [false, false, false, false, false];? the members of this matrix are not character nor string.

1 visualización (últimos 30 días)
Here is the matrix
isCategoricalPrd = [false, false, false, false, false];
I want to know the type of matrix members and how to make this matrix systematically like in neumerical matrices "zeros" or "ones" are used so that I can make them with any size.

Respuesta aceptada

Walter Roberson
Walter Roberson el 17 de Mzo. de 2020
false and true are datatype named logical
true(1,5)
false(1,5)
ones(1,5,'logical')
zeros(1,5,'logical')
logical(ones(1,5))
logical(zeros(1,5))
  4 comentarios
Zeynab Mousavikhamene
Zeynab Mousavikhamene el 17 de Mzo. de 2020
It does not return the interested matrix:
isCategoricalPrd = false(1,5)
isCategoricalPrd =
1×5 logical array
0 0 0 0 0

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by