小妹请教S函数的一个问题
错误提示为:Error in 'untitled/S-Function' while executing M-File S-function 'conv_encode', flag = 3 (output), at time 0. MATLAB error message:Index exceeds matrix dimensions.
我的程序为:
function = conv_encode(t,x,u,flag,G,k)
switch flag,
case 0
=mdlInitializeSizes(G,k);
case 3
sys=mdlOutputs(t,x,u,G,k);
case {1,2,4,9}
sys=[];
otherwise
error(['Unhandled flag = ',num2str(flag)]);
end
function =mdlInitializeSizes(G,k)
sizes = simsizes;
sizes.NumContStates= 0;
sizes.NumDiscStates= 0;
sizes.NumOutputs =-1;
sizes.NumInputs =-1;
sizes.DirFeedthrough = 0;
sizes.NumSampleTimes = 1;
sys = simsizes(sizes);
x0= [];
str = [];
ts= [-1 0];
function sys=mdlOutputs(t,x,u,G,k)
if rem(length(u),k)~=0
u=;
end
l=length(u)/k;
L=size(G,2)/k;
n=size(G,1);
u1=[];
for i=1:L-1
u2=;
u1=;
end
for i=0:l-L
u3=;
u1=;
end
for i=1:L-1
u4=;
u1=;
end
uu=reshape(u1,k*L,L+l-1);
sys=reshape(rem(G*uu,2),1,n*(L+l-1));
输入输出都是一维的向量(数据流),但输出的位数比输入多.实现的是编码功能.
回复 #1 miumiu 的帖子
上次我也是遇到这样的问题,具体原因也说不清楚,不过后来误打误撞通过了,你的模型呢,也传上来啊,也好运行一下 sizes.NumOutputs =-1;sizes.NumInputs =-1;
你的输入和输出的个数都设为-1?
页:
[1]