MATLAB: Printing a character n times

print

Is it possible to print a '.' (i.e..a dot) n times without using a loop?
I have a loop that waits for a response and I want the number of dots to be printed indicating what number loop its in
Thanks
Jason

Best Answer

s = repelem('.',1,10) ;
fprintf('%s\n',s)