Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
returns logical tue if type is class char and false if otherwise. |
|
|
Term
|
Definition
converts number to its numerical representation in string. |
|
|
Term
|
Definition
formats a string result: important ones %s - string %d - double |
|
|
Term
|
Definition
Compares 2 strings of equal length gives a true if they are the same and false if they are not the same.
strcmp on 2 cell arrays will give a vector of 1s and 0s where they are true and false. |
|
|
Term
|
Definition
Compares 2 strings of equal length gives a true if they are the same and false if they are not the same REGARDLESS OF CASE.
strcmpi on 2 cell arrays will give a vector of 1s and 0s where they are true and false. |
|
|
Term
|
Definition
find the index where the start of the 'char' is in the string str. |
|
|
Term
|
Definition
[a, b] = strtok(str, 'char') a = before delimiter ('char') b = delimiter and after. |
|
|