Statistica
MATLAB Answers
0 Domande
1 Risposta
RANK
72.601
of 300.840
REPUTAZIONE
0
CONTRIBUTI
0 Domande
1 Risposta
ACCETTAZIONE DELLE RISPOSTE
0.00%
VOTI RICEVUTI
0
RANK
of 171.238
CONTRIBUTI
0 Problemi
0 Soluzioni
PUNTEGGIO
0
NUMERO DI BADGE
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Risposto
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<=...
oltre 7 anni fa | 0
