-1

Possible Duplicate:
matlab classes: handle or value

Regarding the handle class, you can see here that it mentions the following about this class: Objects that share references with other objects.

What does this mean?

Thanks.

Community
  • 1
  • 1
Simplicity
  • 47,404
  • 98
  • 256
  • 385

1 Answers1

2

It means handle objects are passed by reference, as explained here. Instead of copying the object when passing it as a function argument, which is the default behaviour in Matlab, a reference to it is passed.

zeFrenchy
  • 6,541
  • 1
  • 27
  • 36