Matlab equivalent code in python

조회 수: 4 (최근 30일)
Prb
Prb 2019년 5월 1일
답변: Walter Roberson 2019년 5월 1일
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일
X_test = np.int8(np.float32(X_test)-127)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Call Python from MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by