Vectorisation: Colon operator with floating point increment error

Hi,
For y=400:1.6:1200; Expected output is =400, 401.6,...1198.4,1200.
But Matlab gives output in the form: 1.0e+03 *Columns 1 through 11 0.4000 0.4016 0.4032 ...1.200.
Can you advise how to get the expected output. If it has already been addressed, kindly share the link to look through.
Thanks!

 채택된 답변

Manu M
Manu M 2019년 4월 7일

0 개 추천

y=400:1.6:1200;
z=round(y);

댓글 수: 1

What?? did you inspect the values first?? You ask in the question that you want the second element to be 401.6 whereas after round you get 402, are you aware of it?? If latter was the desired result then wouldn't be simpler to use:
y = 400:2:1200 % ??

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Give the command
format long g
and then display the data again.

카테고리

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

태그

질문:

2019년 4월 7일

답변:

2019년 4월 7일

Community Treasure Hunt

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

Start Hunting!

Translated by