extract elements and build the remain vector
显示 更早的评论
Hello Community,
i need your help.
A vector v has 128 elements with random numbers.
The elements of index 1 21 31 41 should be etracted, and saved as vector a.
the remain elements of vector v should be saved as vector b.
my version consist two for loops which is in deed a bad solution for large vectors.
PS: the vectors are not constant.
maybe someone could finish the algorithm:
v = 1:128;
a = v([1 21 31 41]);
采纳的回答
更多回答(1 个)
David Hill
2020-12-21
a=v([1 21 31 41]);
b=v([2:20,22:30,32:40,42:end]);
5 个评论
David Hill
2020-12-21
Depending on what random numbers you want, use rand() or randi() functions (assuming uniform distribution)
v=A*rand(1,128)-B;%generates random numbers between -B:A-B
Marko
2020-12-21
David Hill
2020-12-21
b=v(~ismember(v,a));
Marko
2020-12-21
类别
在 帮助中心 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!