Azzera filtri
Azzera filtri

Matlab equivalent code in python

5 visualizzazioni (ultimi 30 giorni)
Prb
Prb il 1 Mag 2019
Risposto: Walter Roberson il 1 Mag 2019
Hi What would be an equivalent code in python for this line of Matlab code
X_test = int8(single(X_test) - 127)

Risposta accettata

Walter Roberson
Walter Roberson il 1 Mag 2019
X_test = np.int8(np.float32(X_test)-127)

Più risposte (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by