MATLAB COMPILER RELEASE NOTES User's Guide Page 220

  • Download
  • Add to my manuals
  • Print
  • Page
    / 716
  • Table of contents
  • BOOKMARKS
  • Rated. / 5. Based on customer reviews
Page view 219
R2012a
7-10
input argument to unique, union, intersect, setdiff, setxor, and ismember. For
example:
[C,IA,IC] = unique([9 9 1],'R2012a')
C =
1 9
IA =
3
1
IC =
2
2
1
If the changes adversely affect your code, you can specify 'legacy' to preserve the
current behavior. For example:
[C,IA,IC] = unique([9 9 1],'legacy')
C =
1 9
IA =
3 2
IC =
2 2 1
Page view 219
1 2 ... 215 216 217 218 219 220 221 222 223 224 225 ... 715 716

Comments to this Manuals

No comments