Load .mat file within an audioPluginClass?

1 回表示 (過去 30 日間)
Angeliki Mourgela
Angeliki Mourgela 2020 年 7 月 7 日
回答済み: jibrahim 2020 年 7 月 8 日
Hi,
I wanted to ask if it would be possible to load and use a saved .mat variable within an audioPluginClass. More specifically, I have an array of 32 delay values which I want to import and add on each of the 32 channels of my filtered signal at the processing stage of the plugin, before summing. Is there an efficient way of doing this? Is it at all possible to begin with?
Thank you!
  2 件のコメント
jibrahim
jibrahim 2020 年 7 月 7 日
Angeliki, do these 32 delay values ever change? Is this something you want the plugin to do as it is running, or is it OK to hard-code those values when you generate the plugin? If it is the former, consider dsp.BinaryFileReader, which generates C code. If the latter, see coder.load:
https://www.mathworks.com/help/fixedpoint/ref/coder.load.html
Angeliki Mourgela
Angeliki Mourgela 2020 年 7 月 8 日
Hi jibrahim,
Thank you very much for the response! The values do not change, they are precalculated and applied to the signal to compensate for filter delays. dsp.BinaryFileReader looks very promising, I will give it a go and see if it works!
Thank you again!
Angeliki

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

採用された回答

jibrahim
jibrahim 2020 年 7 月 8 日
Sorry Angeliki, my answer miht have been a little confusing. If the values are constant, I would consider coder.load. You would need dsp.BinaryFileReader only if you actuallt need to load the values from a file in the generated plugin

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAudio Plugin Creation and Hosting についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by