Printing a character n times

41 ビュー (過去 30 日間)
Jason
Jason 2020 年 6 月 10 日
回答済み: madhan ravi 2020 年 6 月 10 日
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

採用された回答

KSSV
KSSV 2020 年 6 月 10 日
編集済み: KSSV 2020 年 6 月 10 日
s = repelem('.',1,10) ;
fprintf('%s\n',s)

その他の回答 (1 件)

madhan ravi
madhan ravi 2020 年 6 月 10 日
n = 5; % number of times
join(repmat(".",5,1))

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by