How to do array operation With simulink blocks ?

1 回表示 (過去 30 日間)
Sasidhar Duggireddy
Sasidhar Duggireddy 2019 年 5 月 28 日
回答済み: Sasidhar Duggireddy 2019 年 6 月 12 日
I was designed below code with State flow. But I unable to do with the Simulink blocks.
please let me know, how to with the Simulink.
uint8 sampleFunction(uint8 *A, uint8 *B)
{
for(i=0;i<n;i++)
{
Temp = 0;
if(A[i] == B[i])
{
Temp = A[i] + B[i];
}
}
return Temp;
}
  • > How we can take dynamic array ?

採用された回答

Sasidhar Duggireddy
Sasidhar Duggireddy 2019 年 6 月 12 日
Please find the below example for more idea about for loop.
I hope this example can help
Capture.JPG

その他の回答 (1 件)

Nick Sarnie
Nick Sarnie 2019 年 6 月 5 日
編集済み: Nick Sarnie 2019 年 6 月 5 日
Hi Sasidhar,
It looks like that loop is adding two matricies. The "Add" or "Sum" block can do this:
If the matrix size is constant once the simulation has started, you can simply set the dimensions in the block parameters. To make it easier, consider using Simulink.Parameters for the dimensions instead.
If the matrix size will change between simulation steps, you can use variable size signals.
Thanks,
Nick
  2 件のコメント
Sasidhar Duggireddy
Sasidhar Duggireddy 2019 年 6 月 6 日
Hello Nick
I know how do addition of two scalars(numbers) with add operator. I want know how to add the array elements with one constant or array of elements.
Thanks for your reply.
Nick Sarnie
Nick Sarnie 2019 年 6 月 6 日
Hi Sasidhar,
Can you provide an example of this operation?
Thanks,
Nick

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

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by