MATLAB COMPILER RELEASE NOTES Guía de usuario Pagina 177

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 716
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 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
Vista de pagina 176
1 2 ... 172 173 174 175 176 177 178 179 180 181 182 ... 715 716

Comentarios a estos manuales

Sin comentarios