Formatting floating and integer signed numbers

Suppose a=5 and b=-6. If I use sprintf and write sprintf("℅0.2f+℅0.2f°,a,b) we get 5.00+-6.00 as answer and not 5.00-6.00. I would like to display the answer as 5.00-6.00. How to do it?

 채택된 답변

James Tursa
James Tursa 2020년 6월 12일
편집: James Tursa 2020년 6월 12일

0 개 추천

sprintf("%0.2f%+0.2f",a,b)
Having the + inside the %format stuff forces the sign to print.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Simulink에 대해 자세히 알아보기

제품

릴리스

R2018a

질문:

2020년 6월 12일

댓글:

2020년 6월 12일

Community Treasure Hunt

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

Start Hunting!

Translated by