str = formattedDisplayText(V)
str = formattedDisplayText(V, Name, Value)
| Paramètre | Description |
|---|---|
| V | Variable à retourner sous forme de chaîne |
| Name, Value | Arguments paires nom-valeur, Name : 'NumericFormat' ou 'LineSpacing'. |
| Paramètre | Description |
|---|---|
| str | une chaîne |
str = formattedDisplayText(V) renvoie la sortie d'affichage deV sous forme de chaîne.
La chaîne est équivalente à la sortie de disp(V).
R = eye(3, 3)
str = formattedDisplayText(R)
R = rand(3, 3);
disp(R)
str = formattedDisplayText(R)
str = formattedDisplayText(R, 'NumericFormat', 'bank', 'LineSpacing', 'compact')
| Version | Description |
|---|---|
| 1.0.0 | version initiale |