-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add even more notes (this time on converting one's complement to two'…
…s complement and vice versa)
- Loading branch information
1 parent
fae6b72
commit 1e13f91
Showing
2 changed files
with
8 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# How to convert numbers from one's complement to two's complement? | ||
To convert binary[[20241007151817]] number from one's complement [[20241008153136]] to the two's complement [[20241008163228]] of a number add one to the number. | ||
|
||
#gds #numberrepresentation #binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# How to convert two's complement of a number to one's complement of a number? | ||
To convert the two's complement [[20241008163228]] of a binary [[20241007151817]] number to the one's complement [[20241008153136]] of a binary number subtract 1 from the number. | ||
|
||
#gds #numberrepresentation #binary |