Create string of dots characters
2 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I want to create a string of dots character like the function blanks does to create spaces. how do I do that?
0 件のコメント
採用された回答
その他の回答 (1 件)
David Sanchez
2014 年 1 月 7 日
function my_dots(n)
str = '';
for k=1:n
str = strcat(str,'.');
end
disp(str)
>> my_dots(3)
...
>> my_dots(10)
..........
1 件のコメント
Jos (10584)
2014 年 1 月 7 日
In every iteration, str grows by one element, making this painstakingly slow with increasing n … MLint warns you for this problem.
参考
カテゴリ
Help Center および File Exchange で Numeric Types についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!