what is wrong in this? how to use isinteger?

10 visualizaciones (últimos 30 días)
Monnappa MB
Monnappa MB el 13 de Jun. de 2020
Editada: Monnappa MB el 13 de Jun. de 2020
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
.

Respuesta aceptada

Matt J
Matt J el 13 de Jun. de 2020
Editada: Matt J el 13 de Jun. de 2020
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

Más respuestas (0)

Categorías

Más información sobre Interactive Control and Callbacks en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by