How to multiply row and column vectors in Simulink
Show older comments
I would like to multiply a row and a column vector using Simulink.
Example in MATLAB:
a = [11 12 13 14 15];
b = [1;2;3];
c=a.*b
I could not perform this simple operation using Simulink block:

What am I doing wrong, how can I make row-column vector multiplication via Simulink?
Thank you in advance!
Answers (1)
Mark McBroom
on 10 Sep 2022
1 vote
Your MATLAB code takes advantage of implicit expansion. This feature is not available in Simulink. You'll need to update your model to convert the vectors to matrices with compatible sizes.
Categories
Find more on Simulink Functions in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!