str = {'cats', 'dogs', 'birds'};
how to display the above string in command window as
cats
dogs
birds

 採用された回答

Star Strider
Star Strider 2022 年 6 月 3 日

1 投票

Use fprintf
str = {'cats', 'dogs', 'birds'};
fprintf('%s\n',str{:})
cats dogs birds
.

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeCharacters and Strings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by