Guest User

Untitled

a guest
Apr 24th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. a = logical([1 0 1 1])
  2. b = logical([1 0 0 0])
  3. c = imadd (a, b)
  4. class(c)
  5. c = imadd (a, b, "logical")
  6. class(c)
  7. a = uint16(round(rand(5)*300))
  8. b = uint16(round(rand(5)*300))
  9. c = imadd (a, b, "uint8")
  10. class(c)
Add Comment
Please, Sign In to add comment