MATLAB COMPILER RELEASE NOTES Podręcznik Użytkownika Strona 177

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 716
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 176
Mathematics
5-17
Cell arrays of strings can combine with char arrays.
ismember treats trailing white space in cell arrays of strings as distinct characters.
For example, 'word' is different from 'word '. If the 'legacy' flag is specified,
ismember ignores trailing white space and treats 'word' the same as 'word '.
Compatibility Considerations
If the changes adversely affect your code, you can specify 'legacy' to preserve the
behavior from R2012b and prior releases. For example:
[C,IA,IC] = unique([9 9 1])
C =
1 9
IA =
3
1
IC =
2
2
1
[C2,IA2,IC2] = unique([9 9 1],'legacy')
C2 =
1 9
IA2 =
3 2
IC2 =
2 2 1
Przeglądanie stron 176
1 2 ... 172 173 174 175 176 177 178 179 180 181 182 ... 715 716

Komentarze do niniejszej Instrukcji

Brak uwag