Effacer les filtres
Effacer les filtres

matlab space error problem

6 vues (au cours des 30 derniers jours)
Maria
Maria le 28 Mai 2020
Commenté : Maria le 29 Mai 2020
does anyone know why my output doen't have space between two words
  11 commentaires
Brent Kostich
Brent Kostich le 28 Mai 2020
Did you not write this function? If you are asking me if your own test case is right, then I take it you have no idea what that code is doing.
If that is true, then no one can help you.
Maria
Maria le 29 Mai 2020
gotcha it. I used horzcat instead of stracat and it works ! thanks !

Connectez-vous pour commenter.

Réponses (2)

Fangjun Jiang
Fangjun Jiang le 28 Mai 2020
From "help strcat"
For character array inputs, strcat removes trailing ASCII white-space
characters: space, tab, vertical tab, newline, carriage return, and
form-feed. To preserve trailing spaces when concatenating character
arrays, use horizontal array concatenation, [s1, s2, ..., sN]

Steven Lord
Steven Lord le 28 Mai 2020
You can use concatenation as Fangjun Jiang and Brent Kostich suggested. I'd probably use join instead.
join(["I", "love", "Georgia", "Tech"])

Catégories

En savoir plus sur NaNs dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by