How to specify a number to the specified position in the array?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
YANGCHENG LIUL
le 13 Oct 2019
Réponse apportée : Andrei Bobrov
le 14 Oct 2019

0 commentaires
Réponse acceptée
Andrei Bobrov
le 14 Oct 2019
a = [2 3 5 7 11];
out = [a;flip(a,2)];
out = out(1:numel(a));
0 commentaires
Plus de réponses (1)
the cyclist
le 13 Oct 2019
Modifié(e) : the cyclist
le 13 Oct 2019
There's probably not an built-in function that does just that, but it's easy to do it with basic array manipulations. Here is one way.
newData = 1:20; % Your example "new" data
newNewData = [newData(1:10); newData(20:-1:11)]; % Make even newer data, temporarily in 2-d array
newNewData = newNewData(:)' % Make the newer data into a row array
5 commentaires
the cyclist
le 14 Oct 2019
Modifié(e) : the cyclist
le 14 Oct 2019
When you say "random", do you mean the length of the vector is random? Or that the values in the vector are random?
If your data is
[2 3 5 7 11]
what would you want the output to be?
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!