Create string of dots characters

2 vues (au cours des 30 derniers jours)
ELI
ELI le 7 Jan 2014
Commenté : Jos (10584) le 7 Jan 2014
Hi,
I want to create a string of dots character like the function blanks does to create spaces. how do I do that?

Réponse acceptée

Simon
Simon le 7 Jan 2014
Use repmat:
repmat('.', 1, 10)

Plus de réponses (1)

David Sanchez
David Sanchez le 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 commentaire
Jos (10584)
Jos (10584) le 7 Jan 2014
In every iteration, str grows by one element, making this painstakingly slow with increasing n … MLint warns you for this problem.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Mathematics dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by