Subscripting into an mxArray is not supported

조회 수: 1 (최근 30일)
Gautham Nachimuthu
Gautham Nachimuthu 2015년 2월 9일
댓글: Gautham Nachimuthu 2015년 2월 11일
This is the part where i am getting error while converting to C code using Codegen.
w = 1;
yw1 = zeros(3,3);
r2 = 1;
c2 = 1;
for r3 = (r1-w) : (r1+w)
for c3 = (c1-w) : (c1+w)
_ *yw1(r2,c2) = y1(r3,c3);* _
c2 = c2 + 1;
if(c2 > g)
c2 = 1;
end
end
r2 = r2 + 1;
end
And y1 is a 512x512 matrix.
  댓글 수: 2
Erik S.
Erik S. 2015년 2월 9일
Hi,
In the second for loop you have underlines and stars, what are those? How does your C code look like?
Gautham Nachimuthu
Gautham Nachimuthu 2015년 2월 10일
underlines and stars indicate bold and italicised text just to mark that line where i'm getting error.

댓글을 달려면 로그인하십시오.

채택된 답변

Ryan Livingston
Ryan Livingston 2015년 2월 9일
It sounds like you are using an extrinsic function and need to pre-assign the output.
Please see this similar question for more details on doing so.
  댓글 수: 3
Ryan Livingston
Ryan Livingston 2015년 2월 10일
You can use coder.varsize to declare the output to be variable size:
coder.varsize('y');
y = zeros(...);
y = callExtrinsicFunction(...);
Gautham Nachimuthu
Gautham Nachimuthu 2015년 2월 11일
thanks a lot sir.. i'll try this out and let u know....

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

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

제품

Community Treasure Hunt

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

Start Hunting!

Translated by