필터 지우기
필터 지우기

Output Array of Fortran Level-2 S-function

조회 수: 1 (최근 30일)
Egambaravel
Egambaravel 2013년 8월 12일
I am able to pass the vector (1D array) in to the Fortran code through C gateway, and the S-function is working fine. This is how I pass the input
float fta[3];
for (i=0; i<3; i++) { fta[i] = (float)*uPtrs0[i]; } FortranCode_(&fta....);
In similar way i tried to take the vector as the S-function output and the simulink got crashed. Can anybody give a valuable suggestion on this issue? i tried this way
real_T *y15 = ssGetOutputPortRealSignal(S,15);
y15 [0] = x [42]; y15 [1] = x [43]; y15 [2] = x [44];
x is the Dwork vector

채택된 답변

Egambaravel
Egambaravel 2013년 8월 12일
Sorry, it's working. The main issue was the contiguous declaration. Earlier i fixed them as 1 instead of 0.
Thank you.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Simulink Coder에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by