Guillermo Varela Carbajal
自 2017 起处于活动状态
Followers: 0 Following: 0
Feeds
已回答
Write a function called integerize that takes as its input a matrix A of integers of type double, and returns the name of the “smallest” signed integer class to which A can be converted without loss of information. If no such class exists, the text '
Trying to keep it simple, what about this: function out = integerize (A) if A==int8(A) out='int8'; elseif A==i...
Write a function called integerize that takes as its input a matrix A of integers of type double, and returns the name of the “smallest” signed integer class to which A can be converted without loss of information. If no such class exists, the text '
Trying to keep it simple, what about this: function out = integerize (A) if A==int8(A) out='int8'; elseif A==i...
7 years 前 | 6