How can i multiply two same dimension vectors and why this code is providing error?
Show older comments
while Parent1 , Parent2 and rand are (3*1) dimension.
Off1 = Parent1 + (rand(Dim,1).*(Parent2-Parent1));
Answers (1)
madhan ravi
on 22 Jun 2020
Parent1= rand(3,1)
Parent2=[5;2;2]
Dim = 3
Off1 = Parent1 + (rand(Dim,1).*(Parent2-Parent1));
P.S: You have made a spelling mistake.
Categories
Find more on Resizing and Reshaping Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!