comparison doc/interpreter/numbers.txi @ 6549:5a5a09d7deb8

[project @ 2007-04-20 06:55:29 by jwe]
author jwe
date Fri, 20 Apr 2007 06:55:29 +0000
parents 68f3125f6e27
children 1b7a6061a05d
comparison
equal deleted inserted replaced
6548:ecc8d30fa288 6549:5a5a09d7deb8
63 @end example 63 @end example
64 64
65 You may also use @samp{j}, @samp{I}, or @samp{J} in place of the 65 You may also use @samp{j}, @samp{I}, or @samp{J} in place of the
66 @samp{i} above. All four forms are equivalent. 66 @samp{i} above. All four forms are equivalent.
67 67
68 @DOCSTRING(double)
69
70 @DOCSTRING(single)
71
72 @DOCSTRING(complex)
73
68 @menu 74 @menu
69 * Matrices:: 75 * Matrices::
70 * Ranges:: 76 * Ranges::
77 * Integer Data Types::
71 * Logical Values:: 78 * Logical Values::
72 * Predicates for Numeric Objects:: 79 * Predicates for Numeric Objects::
73 @end menu 80 @end menu
74 81
75 @node Matrices 82 @node Matrices
372 379
373 When Octave parses a range expression, it examines the elements of the 380 When Octave parses a range expression, it examines the elements of the
374 expression to determine whether they are all constants. If they are, it 381 expression to determine whether they are all constants. If they are, it
375 replaces the range expression with a single range constant. 382 replaces the range expression with a single range constant.
376 383
384 @node Integer Data Types
385 @section Integer Data Types
386
387 @DOCSTRING(isinteger)
388
389 @DOCSTRING(int8)
390
391 @DOCSTRING(uint8)
392
393 @DOCSTRING(int16)
394
395 @DOCSTRING(uint16)
396
397 @DOCSTRING(int32)
398
399 @DOCSTRING(uint32)
400
401 @DOCSTRING(int64)
402
403 @DOCSTRING(uint64)
404
405 @DOCSTRING(intmax)
406
407 @DOCSTRING(intmin)
408
377 @node Logical Values 409 @node Logical Values
378 @section Logical Values 410 @section Logical Values
379 411
412 @DOCSTRING(logical)
413
380 @DOCSTRING(true) 414 @DOCSTRING(true)
381 415
382 @DOCSTRING(false) 416 @DOCSTRING(false)
383 417
384 @node Predicates for Numeric Objects 418 @node Predicates for Numeric Objects