How can i multiply two same dimension vectors and why this code is providing error?

while Parent1 , Parent2 and rand are (3*1) dimension.
Off1 = Parent1 + (rand(Dim,1).*(Parent2-Parent1));

Answers (1)

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

Asked:

on 22 Jun 2020

Edited:

on 22 Jun 2020

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!