matlab space error problem
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
does anyone know why my output doen't have space between two words
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/304699/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/304703/image.png)
11 comentarios
Brent Kostich
el 28 de Mayo de 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.
Respuestas (2)
Fangjun Jiang
el 28 de Mayo de 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]
0 comentarios
Steven Lord
el 28 de Mayo de 2020
You can use concatenation as Fangjun Jiang and Brent Kostich suggested. I'd probably use join instead.
join(["I", "love", "Georgia", "Tech"])
0 comentarios
Ver también
Categorías
Más información sobre NaNs en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!