MATLAB COMPILER RELEASE NOTES Guide de l'utilisateur Page 177

  • Télécharger
  • Ajouter à mon manuel
  • Imprimer
  • Page
    / 716
  • Table des matières
  • MARQUE LIVRES
  • Noté. / 5. Basé sur avis des utilisateurs
Vue de la page 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
Vue de la page 176
1 2 ... 172 173 174 175 176 177 178 179 180 181 182 ... 715 716

Commentaires sur ces manuels

Pas de commentaire