How to obtain a vector (A) of 11 rows (output MATLAB Function block), from a vector (B) of 501 rows (input to the MATLAB Function block)?.

1 次查看(过去 30 天)
Size mismatch (size [1 x 1] ~= size [10 x 1]). The size to the left is the size of the left-hand side of the assignment. More information
% The following code corresponds to the MATALAB function block that gives an error in the Simulink model in which I am working:
function y=f(A,B)
y=sqrt((A).^2+(B).^2);
y=y(1:49:450,1)
For more information:
If I load the vectors (A y B) in workspace and run it in command windows the desired result is obtained. I need to extract vector elements in matlab function from Simulink. If this is not possible, how can I extract the elements of the vector at the output of the function without leaving Simulink?.
  4 个评论
Fangjun Jiang
Fangjun Jiang 2023-3-22
编辑:Fangjun Jiang 2023-3-22
My confusion comes from the title of your question. I thought it indicated that A has 11 rows.
By the way, y(1:49:450) should have 10 elements, not 11.
size(1:49:450)
ans = 1×2
1 10

请先登录,再进行评论。

回答(1 个)

Fangjun Jiang
Fangjun Jiang 2023-3-22
The straight solution is to use below.
function y=f(A,B)
temp=sqrt((A).^2+(B).^2);
y=temp(1:49:450);
Simulink is strict on knowing the size of the variable and keep it fixed (although variable size is possible).
It's better to click "edit data" at the MATLAB Function block code editor and specify the size of input, output, parameters, temp variables, etc.
  8 个评论

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Sources 的更多信息

产品


版本

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by