float & strip in array from Python to Matlab?

조회 수: 1 (최근 30일)
Adam Agus Kurniawan
Adam Agus Kurniawan 2020년 6월 29일
댓글: Ameer Hamza 2020년 6월 29일
I had this file "koefisienPolynomialSpectrumPenuh.txt" that contains alot of values on each rows. Now, I want to use this Python code and convert it to the Matlab.
teks = textread('koefisienPolynomialSpectrumPenuh.txt');
Python :
a0 = float(teks[0][6:13].strip())
a1 = float(teks[0][17:26].strip())
a2 = float(teks[0][27:39].strip())
a3 = float(teks[0][40:52].strip())
a4 = float(teks[0][54:].strip())
print a0, a1, a2, a3, a4
The result : 103.686 0.072558 -1.27386e-05 -1.01114e-10 2.53449e-14
  댓글 수: 1
Ameer Hamza
Ameer Hamza 2020년 6월 29일
I don't have R2017a, but on R2020a, textread() automatically loads the data in numeric format. The value of the first row can be seen using
disp(teks(1,:))
Alternatively, you may also try
teks = load('koefisienPolynomialSpectrumPenuh.txt');

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

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

제품


릴리스

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by