- int8, int16, etc. see Christians answer
- with a special use of double, which is called flint. See Floating Points
About isinteger command(confusion)
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
C Zeng
am 14 Mär. 2013
Bearbeitet: per isakson
am 16 Jan. 2015
Hi, by the command of isinteger I can check if it is an integer, however, when defined at first, Matlab assume it is double precision right? So even a=3, isinteger(a) returns 0.
How to solve this problem?
0 Kommentare
Akzeptierte Antwort
per isakson
am 14 Mär. 2013
Bearbeitet: per isakson
am 16 Jan. 2015
Matlab represents integers in differnt ways:
I use this function to test for flint
function isf = isflint( m )
% floating double only
try
bitand( abs( m ), 1 );
isf = true;
catch me
isf = false;
end
end
I picked up the idea from a contribution by the "Pedestrian" in the FEX.
(I stripped off comments and error handling.)
5 Kommentare
Jan
am 16 Mär. 2013
The problem is to decide, if 1e17 is an integer or not: Because a double can store 16 digits only, this number does not contain any information about the fractional part for reasons of the precision. bitand() detect this and throw an error, while 1e17==round(1e17) replies true, because cropping the fractional part does not influence value.
Weitere Antworten (2)
Jan
am 16 Mär. 2013
Joining the rounding with the checks for overflows:
function isf = isflint(m)
isf = (abs(m) <= bitmax && m == floor(m));
1 Kommentar
ChristianW
am 14 Mär. 2013
doc isinteger
isinteger(int8(3))
5 Kommentare
Jan
am 16 Mär. 2013
@C Zeng: @(x) x==round(x) is an anonymous function. You find an exhaustive description ion the documentation.
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!