Effacer les filtres
Effacer les filtres

How to remove extra numbers to reduce size of vector?

2 vues (au cours des 30 derniers jours)
Ammy
Ammy le 11 Mar 2022
Commenté : Ammy le 11 Mar 2022
The following code removes extra number from the start of vector A if the size is not divisible by 3,
I want to remove extra numbers from the end of vector A.
A = rand(10000,1);
s = 3;
shortvector = A((end-s*floor(end/s)+1):end);

Réponse acceptée

KSSV
KSSV le 11 Mar 2022
A = rand(10000,1);
s = 3;
n = mod(length(A),s) ;
iwant = A(1:end-n) ;

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays 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!

Translated by