C Caller does not show port specification?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello,
as You can see C caller does not show Port specification of the c code of the MatLab video shown here:https://www.youtube.com/watch?v=ONrb_UYTWYs&ab_channel=MATLAB
#ifndef HEADER_H_
#define HEADER_H_
// Global Variable
extern double gVec[5];
extern double sum;
//Function
extern void cumulativeAdder(void);
#endif
source code
#include "header.h"
double gVec[5];
double sum = 0;
void cumulativeAdder(void){
int idx = 0, tmpSum = 0;
for(; idx < 5, ++idx){
tmpSum = tmpSum + gVec[idx); // Function reads "gVec" as INPUT
}
sum = tmpSum; //Function writes to "sum" as OUTPUT
}
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/736994/image.png)
댓글 수: 0
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Simulink Functions에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!