Create string of dots characters
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi,
I want to create a string of dots character like the function blanks does to create spaces. how do I do that?
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
David Sanchez
am 7 Jan. 2014
function my_dots(n)
str = '';
for k=1:n
str = strcat(str,'.');
end
disp(str)
>> my_dots(3)
...
>> my_dots(10)
..........
1 Kommentar
Jos (10584)
am 7 Jan. 2014
In every iteration, str grows by one element, making this painstakingly slow with increasing n … MLint warns you for this problem.
Siehe auch
Kategorien
Mehr zu Characters and Strings finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!