Importing code from octave to matlab

5 ビュー (過去 30 日間)
Peter Cristian
Peter Cristian 2022 年 4 月 8 日
コメント済み: Peter Cristian 2022 年 4 月 8 日
Hello, i've got a problem with MatLAB when trying to run a code that i've written in octave.
The code in octave works perfectly but when i run it in MatLab it doesnt work, how can i write this line so it works in matlab?
The error message is: ` Invalid array indexing.`
z = abs(fft(c))(1:T*fs/2)/(T*fs);

採用された回答

Stephen23
Stephen23 2022 年 4 月 8 日
tmp = abs(fft(c));
z = tmp(1:T*fs/2)/(T*fs);
  1 件のコメント
Peter Cristian
Peter Cristian 2022 年 4 月 8 日
Thank you very much!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeOctave についてさらに検索

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by