Answers for "convert array of bool to int"

0

numpy convert true false to 0 1

array([False, False,  True,  True], dtype=bool)
>>> 1*y                      # Method 1
array([0, 0, 1, 1])
>>> y.astype(int)            # Method 2
array([0, 0, 1, 1])
Posted by: Guest on April-29-2020
0

convert dint to boolean array

Dim MyDint As Int32 = 32
    Dim oByteArray As New System.Collections.BitArray(System.BitConverter.GetBytes(MyDint))
Posted by: Guest on October-28-2020

Python Answers by Framework

Browse Popular Code Answers by Language