Hello!
I can't seem to figure out why the built-in function "ones" is giving me decimal points.
ex: >> ones(2)
ans =
1.00 1.00
1.00 1.00

 채택된 답변

Steven Lord
Steven Lord 2020년 4월 20일

0 개 추천

You've turned on the 'bank' display format. That displays a double or single precision array with 2 decimal places regardless of whether it contains integer values or non-integer values.
format % short
A = ones(2) % no decimal places, none required to display A's contents
format bank
A = ones(2) % 2 decimal places
format long
A = ones(2) % no decimal places, none required

추가 답변 (0개)

질문:

2020년 4월 20일

댓글:

2020년 4월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by