Hi What would be an equivalent code in python for this line of Matlab code
X_test = int8(single(X_test) - 127)

 채택된 답변

Walter Roberson
Walter Roberson 2019년 5월 1일

0 개 추천

X_test = np.int8(np.float32(X_test)-127)

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Call Python from MATLAB에 대해 자세히 알아보기

태그

질문:

Prb
2019년 5월 1일

답변:

2019년 5월 1일

Community Treasure Hunt

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

Start Hunting!

Translated by