Use intmin and intmax to determine the range of values that can be stored in the types uint32 and uint64
belongs to book: MATLAB: A Practical Introduction to Programming and Problem Solving|Stormy Attaway|Fourth Edition| Chapter number:1| Question number:23.1
All Answers
total answers (1)
>> intmin('uint32') ans = 0 >> intmax('uint32') ans = 4294967295 >> intmin('uint64') ans = 0 >> intmax('uint64') ans = 18446744073709551615
need an explanation for this answer? contact us directly to get an explanation for this answer