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 '
This is a bit simpler(but longer) code. function c = integerize(A) m = max(A(:)); n = min(A(:)); if n>=-128 && m<=...
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 '
This is a bit simpler(but longer) code. function c = integerize(A) m = max(A(:)); n = min(A(:)); if n>=-128 && m<=...
7년 초과 전 | 0
