How to do array operation With simulink blocks ?
이전 댓글 표시
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 ?
채택된 답변
추가 답변 (1개)
Nick Sarnie
2019년 6월 5일
편집: Nick Sarnie
2019년 6월 5일
0 개 추천
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
2019년 6월 6일
Nick Sarnie
2019년 6월 6일
Hi Sasidhar,
Can you provide an example of this operation?
Thanks,
Nick
카테고리
도움말 센터 및 File Exchange에서 General Applications에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
