what is wrong in this? how to use isinteger?

function valid= valid_date3(y,m,d)
if ~isscalar(y) || ~isscalar(m) || ~isscalar(d) || ~isinteger(y) || ~isinteger(m) || ~isinteger(d) || y<1 || m<1 || d<1
valid=false;
return
end
valid=valid_date3(1900,2,28)
valid =
logical
0
.

 채택된 답변

Matt J
Matt J 2020년 6월 13일
편집: Matt J 2020년 6월 13일

1 개 추천

To test whether a variable is integer-valued, you would do
y==round(y)
isinteger is for something completely different. It simply tests whether y is stored in floating point form, or as an integer data type, e.g.,
>> isinteger(5)
ans =
logical
0
>> isinteger(uint8(5))
ans =
logical
1

추가 답변 (0개)

카테고리

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

질문:

2020년 6월 13일

편집:

2020년 6월 13일

Community Treasure Hunt

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

Start Hunting!

Translated by