Get value from function to be used in another program part 2
显示 更早的评论
Hello,
I have this function
function [x y] = centroid(X)
X = X/sum(X(:));
[m,n]=size(X);
[I,J]=ndgrid(1:m,1:n);
centro = [dot(I(:),X(:)), dot(J(:),X(:))];
end
when I try to use this function call in another program to use the centro values, I get an error , "Output argument "x" (and maybe others) not assigned during call to "centroid"."
How can I use the data out from this function?
Here is my use case in another program:
A = centroid(X);
A(1,:)
Thanks.
采纳的回答
更多回答(1 个)
Mauricio Bassallo
2021-5-3
0 个投票
Hi,
I have a model created in Simulink (also with Simscape elements) and I want that some some outputs (ports) of the model be sent to another program, which is going to return inputs to the model (control the model) based on the outputs that was sent by the model.
Does anyone have some idea about how to create an interface between Simulink model and a program in order to generate such dynamic?
Thnaks in advance for your reply!
Mauricio
类别
在 帮助中心 和 File Exchange 中查找有关 Multibody Modeling 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!