Statistica
                        MATLAB Answers
                        
                    0 Domande
                        1 Risposta
RANK
5.099
                          
                          
of 300.381
                        
REPUTAZIONE
10
                           
                        
CONTRIBUTI
                          0 Domande
                          1 Risposta
ACCETTAZIONE DELLE RISPOSTE 
                            0.00%
                        
VOTI RICEVUTI
6
RANK
of 168.477
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 '
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...
oltre 8 anni fa | 6
