Simulink user defined function: undefined variable or function

조회 수: 3 (최근 30일)
Martijn
Martijn 2012년 6월 10일
댓글: Sumukh Bharadwaj 2018년 3월 21일
Dear all,
When using a user defined Matlab function in Simulink, with the following structure:
function xdot = fcn(x,u)
%VEHICLE PROPERTIES (removed here)
%%Dea
xdot(1)=V*cos(x(1));
xdot(2)=V*sin(x(1));
xdot(3)=V*1/l(1)*tan(u);
xdot(4)=-xdot(3)-V/l(2)*sin(x(4))-xdot(3)*(c(1)/l(2))*cos(x(4));
V(1)=V;
for k=2:n-1
ratep=xdot(3)+sum(xdot(4:k+2)); %yaw-rate precessing unit
V(k)=V(k-1)*cos(x(k+2))-ratep*c(k-1)*sin(x(k+2)); %velocity precessing unit
xdot(k+3)=-ratep-V(k)/l(k+1)*sin(x(k+3))-ratep*(c(k)/l(k+1))*cos(x(k+3));
end
end
I get the errors: Undefined function or variable 'xdot'. The first assignment to a local variable determines its class.
As you can see, I want to assign a value to xdot, so I do not understand where the error comes from. Can anyone help?

채택된 답변

Walter Roberson
Walter Roberson 2012년 6월 11일
Start the routine with
xdot = zeros(1, n+2);
  댓글 수: 2
Martijn
Martijn 2012년 6월 11일
Thank you, the function variable are not allowed to change size to be able to generate code.
Sumukh Bharadwaj
Sumukh Bharadwaj 2018년 3월 21일
Hi,
I'm facing the same problem! "Undefined function and first assignment........
How did you overcome it?

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

추가 답변 (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