How can I translate these Matlab statistics into Python?

3 ビュー (過去 30 日間)
Mahreen Kohkar
Mahreen Kohkar 2022 年 9 月 3 日
回答済み: Al Danial 2022 年 9 月 7 日
I am trying to write an equivalent Matlab program to Python. Can someone help with an equivalent Python statement for the mentioned statement?
Yd = fread(fid,[3840 2160],'ubit16'); Y{i} = Yd';

回答 (1 件)

Al Danial
Al Danial 2022 年 9 月 7 日
If this 3840 x 2160 matrix is the only data in the file you could do
import numpy as np
Yd = np.fromfile('file_with_matrix.bin', dtype=np.uint16).reshape(2160,3840).T
Y[i] = Yd.T
Note that both the 2nd and 3rd lines have transposes (.T). The 2nd line compensates for MATLAB's column-major reading compared to NumPy's row-major. You could instead do
import numpy as np
Y[i] = np.fromfile('file_with_matrix.bin', dtype=np.uint16).reshape(3840,2160)
Yd = Y[i].T
and only tranpose once.

カテゴリ

Help Center および File ExchangeCall Python from MATLAB についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by