Simulink doubt -not have enough information to determine output sizes for this block
31 次查看(过去 30 天)
显示 更早的评论
Please find attached the simulink diagram. The code in the main function block is as follows :
function [xdot,xcapdot,dbar_dot,xdotr,ut] =fcn(x,xcap,dbar,xr,A,B,C,L,Kp,Kr,r,d,tau)
y=C*x
ycap=C*xcap
dbar_dot=((B'/(B'*B))*L*(y-ycap))/(tau)
xdotr=r-y
k=Kp*xcap
uf=-(k+Kr*xr)
ut=-uf-dbar
xdot=(A*x+B*ut+B*d)
xcapdot=(A*xcap)+(B*uf)+(L*(y-ycap));
On running this simulink program, I am getting the following error
Simulink does not have enough information to determine output sizes for this block. If you think the errors below are inaccurate, try specifying types for the block inputs and/or sizes for the block outputs.
Inner matrix dimensions must agree. Function 'MATLAB Function' (#35.196.200), line 16, column 11: "B*ut"
Function 'MATLAB Function' (#29.235.239), line 18, column 19:
"B*uf"
Errors occurred during parsing of MATLAB function 'MATLAB Function'
The problem lies in the fact that simulink (Refer to attached pic) is considering x and xcap and xdot as 1*1 but they are actually (3*1). How should I correct this
What error am I doing? How should I correct them.
4 个评论
Swarooph
2017-7-31
One thing you can try is to explicitly specify the sizes for these input variables in MATLAB function block editor's Edit Data option. Take a look at the documentation example here to see how to do this and then set the size appropriately.
回答(1 个)
Souarv De
2019-9-26
Assign these values at the starting of your function
x = zeros(3,1);
xcap = zeros(3,1);
xdot = zeros(3,1);
1 个评论
tret retret
2020-1-13
what is the correct way for assigning?
For example the output data is a vector [x1;x2], but the data are written to a file as [x1 x2].
If the program read out the file with
value = sscanf(file, '%g', [1,2])
and then makes a following assignment:
x1 = value(1,1)
x2 = value(1,2)
value=double([x1;x2])
I got the same error massage.
If the program makes an assignmnet as a scalar
x1 = value(1,1)
x2 = value(1,2)
value=0;
there is no error massage. But schould value be declared as a scalar?
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Event Functions 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!