converting python script to matlab

5 ビュー (過去 30 日間)
Zahra Sheikhbahaee
Zahra Sheikhbahaee 2020 年 11 月 2 日
コメント済み: Ameer Hamza 2020 年 11 月 2 日
I am new in Matlab and I am trying to move some part of a python code to my matlab script. I have a bit of problem finding the same functionaltiy of numpy library for matrices in matlab.
I was wondering what would be the equivalent of following lines of code in matlab:
gamma1 = 1. + np.sum(phi[:T-1,:], axis=1)
phi_cum = np.cumsum(phi[:0:-1,:], axis=0)[::-1,:]
gamma2 = alpha + np.sum(phi_cum, axis=1)
lV1 = np.vstack((lV1, 0.))
lV2 = psi(gamma2) - psi(gamma1 + gamma2)
lV2 = np.cumsum(np.vstack((0., lV2)), axis=0)
thanks

回答 (1 件)

Ameer Hamza
Ameer Hamza 2020 年 11 月 2 日
Check the following function. They are equivalent to the function used in your code
  2 件のコメント
Zahra Sheikhbahaee
Zahra Sheikhbahaee 2020 年 11 月 2 日
thanks for the answer. Disentangling the indices here is making me confused
np.cumsum(phi[:0:-1,:], axis=0)[::-1,:]
Any suggestion how it will become in matlab?
Ameer Hamza
Ameer Hamza 2020 年 11 月 2 日
This command is equivalent to
y = cumsum(phi(end:-1:2, :))
y = y(end:-1:1, :)

サインインしてコメントする。

カテゴリ

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