#1418 closed task (fixed)
[MatQuery] Función para la comprobación de que una matriz es binaria
Reported by: | Víctor de Buen Remiro | Owned by: | Víctor de Buen Remiro |
---|---|---|---|
Priority: | highest | Milestone: | Mantainance |
Component: | Math | Version: | 2.0.1 |
Severity: | blocker | Keywords: | |
Cc: |
Description
Es necesario incorporar a MatQuery una función para la comprobación de que una matriz es binaria para el chequeo de modelos booleanos como el Probit o el Logit
Change History (7)
comment:1 Changed 13 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:3 Changed 13 years ago by
Es necesario usar la versión MatQuery.3.3
para acceder a estos nuevos métodos.
comment:5 Changed 13 years ago by
Estas son las descripciones de las nuevas funciones:
MatchRowsWithValues
: Returns a column matrix with True in rows where given column matrix M has one of the specified values, that might even be the unknown value.
VMatrix MatchRowsWithValues (VMatrix M, Set values)
SelectRowsWithValues
: Selects rows of a column matrix whose cell is one of the specified values.
Set SelectRowsWithValues(VMatrix M, Set values)
MatchRowsBoolean
: Returns a column matrix with True in rows where given column matrix M is 0 or 1.
VMatrix MatchRowsBoolean (VMatrix M)
SelectRowsBoolean
: Selects rows of a column matrix whose cell is one of the specified values.
Set SelectRowsBoolean (VMatrix M)
IsBoolean
: Returns true if all cells of given matrix are 0 or 1.
Real IsBoolean (VMatrix M)
comment:7 Changed 13 years ago by
Note: See
TracTickets for help on using
tickets.
(In [4068]) Fixes #1418
Added new methods