Adding all the elements of a 1-d matrix/array in Simulink
14 次查看(过去 30 天)
显示 更早的评论
Hi
I have a variable named "power" that contains 25 constant values. I would like to sum them up using a function block in Simulink. I would like that to be done instantly in one timestep. Any suggestions to what can I use?
Thanks
0 个评论
采纳的回答
Mischa Kim
2014-4-1
James, as you suggest, you could use a MATLAB function block (used to be called Embedded MATLAB function) with the following code inside:
function y = fcn(u)
y = sum(u);
0 个评论
更多回答(1 个)
Niklas Nylén
2014-4-1
Use the Add block with one single + in the "list of signs". See attached example.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Simulink Functions 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!