How can i multiply two same dimension vectors and why this code is providing error?
Afficher commentaires plus anciens
while Parent1 , Parent2 and rand are (3*1) dimension.
Off1 = Parent1 + (rand(Dim,1).*(Parent2-Parent1));
Réponses (1)
madhan ravi
le 22 Juin 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.
Catégories
En savoir plus sur Resizing and Reshaping Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!