필터 지우기
필터 지우기

Variable dimension mismatch problem in a Matlab function block

조회 수: 3 (최근 30일)
Hello!
I am getting an error regarding a mismatch between the size of two variables in a Matlab function block:
Dimension 1 is fixed on the left-hand side but varies on the right ([15 x 500] ~= [:15 x :500])
Basically, I have an input variable, A, whose size is variable, and a output variable B, whose size is always [15,500]. Depending on the size of A, the function generates in a different way. For example:
dim_A=size(A);
if dim_A(1)==15
B=A;
else
B=zeros(15,500)
end
The thing is that every time dim_A(1)==15, A's size must be [15,500]. I have also tried to use:
if dim_A(1)==15 && dim_A(2)==500
...
end
but whiout result. The funny thing is that I used exactly the same block in another model and it works there!!
Does anybody know what is going on there??
Thanks a lot! Pablo

채택된 답변

Walter Roberson
Walter Roberson 2016년 1월 8일
Try
B = A(1:15,1:500);
even though you know that is the original size, this would provide a clear hint to MATLAB as to the output size.

추가 답변 (1개)

Pablo García Auñón
Pablo García Auñón 2016년 1월 8일
Thanks Walter! I worked!

카테고리

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

제품

Community Treasure Hunt

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

Start Hunting!

Translated by