transform fprintf in disp

hey, how do i turn this:
fprintf('\nPara i= %d\n e a= %f e a resposta é: %f ', i, n, c)
into the function disp?

1 件のコメント

Ameer Hamza
Ameer Hamza 2020 年 5 月 19 日
Can you further explain what is your intended output?

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

回答 (1 件)

Tommy
Tommy 2020 年 5 月 20 日

0 投票

Maybe this?
disp(sprintf('\nPara i= %d\n e a= %f e a resposta é: %f ', i, n, c))
You'll get a warning that fprintf is preferred.

2 件のコメント

Nuno Duarte
Nuno Duarte 2020 年 5 月 20 日
thanks tommy
darova
darova 2020 年 5 月 20 日

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

タグ

質問済み:

2020 年 5 月 19 日

コメント済み:

2020 年 5 月 20 日

Community Treasure Hunt

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

Start Hunting!

Translated by