フィルターのクリア

Combine fprintf and disp

1 回表示 (過去 30 日間)
Niklas Reinshagen
Niklas Reinshagen 2020 年 6 月 19 日
コメント済み: Ameer Hamza 2020 年 6 月 19 日
Hey all together!
I'm writing a code but be a littler confused because basicly I have to combine fprintf and disp...
fprintf('\nSite name: disp(name(1:4))) \n')
So I'm using a fprintf to print this line of Strings: Site Name: and after this, there shoul'd be written the first 4 letters from my File, i insert this function. Is ist somehow possible to write it this way? I allways get an error... :-(

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 6 月 19 日
disp() is not needed here.
fprintf('\nSite name: %s \n', name(1:4))
See the documentation of fprintf for detail of the formating string.
  2 件のコメント
Niklas Reinshagen
Niklas Reinshagen 2020 年 6 月 19 日
nice! You saved my day for the second time today :-)
Ameer Hamza
Ameer Hamza 2020 年 6 月 19 日
I am glad to be of help!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by