fprintf help wont show full statement
古いコメントを表示
fprintf("afunc*bfunc gives us %d therefore is a root between 0 and 5 \n', rootproof")
%gives the output
afunc*bfunc gives us >>
where have i gone wrong?
5 件のコメント
Steven Lord
2019 年 10 月 31 日
Show us the size, class, and contents (or at least the first couple of elements, if it has many elements) of the variable rootproof.
Rik
2019 年 11 月 7 日
It is extremely rude to edit away your question. This is a public forum where you can get free help from strangers on the internet. The least you can do is leave the question as it was, so people with a similar question can find an answer here.
Ben Newton
2019 年 11 月 8 日
Stephen23
2019 年 11 月 8 日
Original question:
fprintf("afunc*bfunc gives us %d therefore is a root between 0 and 5 \n', rootproof")
%gives the output
afunc*bfunc gives us >>
where have i gone wrong?
Rena Berman
2019 年 12 月 12 日
(Answers Dev) Restored edit
回答 (1 件)
Rik
2019 年 10 月 31 日
Simply pasting what you posted into my copy of Matlab gives a hint about the cause:
I get a warning from m-lint (the orange squiggle) that states that "The format might not agree with the argument count".
The reason is that you made the entire input a string, instead of only the format specifier. Do not mix single and double quotes. Either of the versions below will work.
rootproof=3;
fprintf("afunc*bfunc gives us %d therefore is a root between 0 and 5 \n", rootproof)
fprintf('afunc*bfunc gives us %d therefore is a root between 0 and 5 \n', rootproof)
2 件のコメント
Steven Lord
2019 年 10 月 31 日
Good catch, I missed that mark after the word rootproof.
Rik
2019 年 10 月 31 日
I just formatted the question, so now it is more obvious ;)
カテゴリ
ヘルプ センター および File Exchange で Entering Commands についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!