RosettaCodeData/Task/Dot-product/RLaB/dot-product.rlab
2023-07-01 13:44:08 -04:00

3 lines
51 B
Text

x = rand(1,10);
y = rand(1,10);
s = sum( x .* y );