create a vector w1 having the same length as another vector w but containing certain x values
Show older comments
Hello! I want to create a vector w1 having the same length as another vector w but containing certain x values. How can I fix the code?
v = [100; 177; 186; 124; 175; 211; 132; 144; 124; 111; 133; 152];
w = [25; 14; 33; 20; 14; 22; 29];
number_w = height(w);
x = randsample(v,1);
% w1 = ?
2 Comments
Dyuman Joshi
on 10 Feb 2023
So we have the values for x, but at which indices do you want to put them in w?
Alberto Acri
on 10 Feb 2023
Accepted Answer
More Answers (0)
Categories
Find more on Get Started with MATLAB 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!