How do I annex two numbers?
How do I annex two numbers?
(OP)
Given the code
a = [1 1]
How do I transform vector "a" to vector "b", where
b = [11]
a = [1 1]
How do I transform vector "a" to vector "b", where
b = [11]
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
How do I annex two numbers?
|
RE: How do I annex two numbers?
a = [1 1]
b = dec2bin(a)
Of course this converts my decimal values to binary values, but it works for what I'm doing.