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 Guidelines |
How do I annex two numbers?
|
Join your peers on the Internet's largest technical engineering professional community.
It's easy to join and it's free.
Here's Why Members Love Eng-Tips Forums:
Register now while it's still free!
Already a member? Close this window and log in.
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.