Topic
converting binary to decimal
Page d'accueil ' Communauté ' Généralités ' convertir un binaire en décimal
- Ce sujet contient 2 réponses, 2 participants et a été mis à jour pour la dernière fois par Luca Berardi, le il y a 19 années et 9 mois.
-
AuteurMessages
-
22.09.2005 à 18:02 #34109Luca BerardiParticipant
we have a txt file which contains a column of binary data, this is an example
0111001
10010
1101
1000100
we import this data as a txt file and we want to obtain the corresponding decimal value for each row in another column.
111001 = 57
10010 = 18
1101 = 13
1000100 = 68How can we do that in FlexPro?
best regards22.09.2005 à 18:02 #34111Luca BerardiParticipantwe have a txt file which contains a column of binary data, this is an example
0111001
10010
1101
1000100
we import this data as a txt file and we want to obtain the corresponding decimal value for each row in another column.
111001 = 57
10010 = 18
1101 = 13
1000100 = 68How can we do that in FlexPro?
best regards08.10.2005 à 07:34 #34110Bernhard KantzParticipantThis FPScript code runs under FlexPro 7:
dim b = { 101, 110, 0 } // Example binary data series
Dim d = 0. # NumberOfRows(b) // Result decimal data series
Dim n = 8 // Maximum number of bits to convert
For i = 0 To n – 1 Do
d = d + (b & 1) * 2 ^ i
b = b / 10
End
Return d -
AuteurMessages
- Vous devez être connecté pour répondre à ce sujet.